To add a Static Route in Sun Solaris operating system, you can use the route command. This will dynamically update the Kernel IP Routing table. However, when a server is restarted, these routes will be lost. To prevent this from happening, add a startup script S76static-routes with all the route commands for the static route that needs to persist. This will ensure that the route gets added at boot time.
To use the route command,
Syntax:
# route add [net|host] <Addr> netmask <Mask> [GatewayAddr|-interface ] <metric>
Example:
Add a network
# route add net 10.10.10.0 netmask 255.255.255.0 192.168.1.1 1
same as
# route add 10.10.10.0/24 192.168.1.1 1
Add a host
# route add host 1.1.1.1 netmask 255.255.255.0 192.168.1.1 1
same as
# route add 1.1.1.1/24 192.168.1.1 1
To route the traffic through an interface instead of an IP Gateway
# route add 1.1.1.1/24 -interface hme0
To check that the roots are added to Kernel IP Routing table,
# netstat -rn
Routing Table: IPv4
Destination Gateway Flags Ref Use Interface
——————– ——————– —– —– —— ———
192.168.1.0 192.168.1.1 U 1 273 hme0
224.0.0.0 192.168.1.1 U 1 0 hme0
default 192.168.1.1 UG 1 196
Static Routes at boot time
To make the routes available at boot time so the next time when the server reboots, the routes are still available. Add a startup script named as
/etc/rc2.d/S76static-routes
and add the required route commands as above.
Change the permissions for the file so that the file is executable by root.
# chmod 744 /etc/rc2.d/S76static-routes
This should help.

I found this page really helpful and this helped me alot ..
thanks
Good stuff. Really helpful.
I found that if you happen to be using a system with kernel path 118833-36 (S10 update 3?) or later, you can now use the -p argument to force the route to remain across reboots. Took them long enough. Sheesh!
http://sunsolve.sun.com/search/document.do?assetkey=1-61-229381-1
Good keep it up
Awesome site. Thank you…
route -p add 10.0.0.0/24 192.168.0.1
man route
-p is now the way to edit /etc/inet/static_routes
Thanks a lot, it’s very helpful
obsolete.
check route -p
We can also give the route entry in /etc/defaultrouter so that this is called after reboot, no need of any specific startup scripts.
Take care -p is only availiable since Solaris 10.
So the info is still valid for older versions!!