Wednesday, May 19, 2010

How to add routing script on Secureplatform?

To create a static route script, create a file in /etc/init.d/ with the routes included,
it should look something like this,
#!/bin/bash

/sbin/route add -host 192.168.1.25 gateway 10.1.1.25
/sbin/route add -host 192.168.1.19 gateway 10.1.1.19

exit 0
Then link this to the startup script, by running,
ln -s /etc/init.d/staticroutes /etc/rc3.d/S68Staticroutes
You can then do the same for the static arp entries.

Please note : that this is the none standard way of adding routes to a SPLAT device. A much easier way is to add your routes via the command line (SSH) using the `/sbin/route add` command and then use the command `route --save` to make the routes permenant post reboot.

No comments: