Quote:
| CP, can you please add a bulk route add command to the WebUI or sysconfig? |
Use the supported commands, in expert mode.
ifconfig --save write the interface configuration into
netconf.C route --save write the routing table into
netconf.C To bulk edit/add interfaces/routes use at the command line.
Code:
ifconfig eth1 inet 10.1.0.2 netmask 255.255.255.0 broadcast 10.1.0.255
ifconfig eth2 inet 10.2.0.2 netmask 255.255.255.0 broadcast 10.2.0.255
ifconfig --save
route add -net 10.1.1.0 gw 10.1.0.1 netmask 255.255.255.0
route add -net 10.1.2.0 gw 10.1.0.1 netmask 255.255.255.0
route add -net 10.2.1.0 gw 10.2.0.1 netmask 255.255.255.0
route add -net 10.2.3.0 gw 10.2.0.1 netmask 255.255.255.0
route --save
I use the attached script to document/backup my routing table at splat.
See this Thread
Copying static routes from R55 to R62