How-To Geek
Set the Default Route on Solaris
Setting the default route on Solaris is easy. If you are trying to just set the route temporarily you can use the route command:
route add default <ipaddress>
Example:
route add default 192.168.1.1
If you want the route to be persisted when you reboot the system, you will need to set the route in the /etc/defaultrouter file.
/etc/defaultrouter
Example:
echo 192.168.1.1 > /etc/defaultrouter
Note that Solaris 10 includes “zones” that can also configure this same behavior. There will be more articles covering this in the future.
Got Feedback? Join the discussion at discuss.howtogeek.com
Comments (1)
Programmer by day, geek by night, The Geek, also known as Lowell Heddings, spends all his free time bringing you fresh geekery on a daily basis. You can follow him on Google+ if you'd like.
- Published 12/1/06




great article. solved one of my problems in my first days on solaris :) thank you GEEK :)