 | Flowpoint 2200/SpeedStream 5851 back to back config exampleSince I couldn't find an example anywhere, and I finally find the one I used a couple of years ago, here it is:
CO side:
login admin
sys name co
eth ip addr 192.168.3.15 255.255.255.0
eth ip defgateway 192.168.3.1
eth ip opt txdef off
dhcp disable all
eth ip enable
rem add cpe
rem setproto ppp cpe
rem setpvc 0*38 cpe
rem disauthen cpe
rem addiproute 192.168.10.0 255.255.255.0 1 cpe
sd term co
sd speed 1152
save
reboot
CPE side:
login admin
sys name cpe
eth ip addr 192.168.10.1 255.255.255.0
eth ip enable
rem add co
rem setproto ppp co
rem setpvc 0*38 co
rem disauthen co
rem addiproute 0.0.0.0 255.255.255.255 1 co
sd speed 1152
save
reboot
You might want to set:
dhcp set valueoption domainnameserver 8.8.8.8 8.8.4.4
on the CPE side.
Also, you can set the speed to something other than 1152kbps. 1536 is a valid option and the 5851s with newer firmware can go even faster (around 2000kbps).
And on my Linux machine which is the router to the outside world and the rest of my network(s) I had to add the following:
route add -net 192.168.10.0 netmask 255.255.255.0 gw 192.168.3.15
|