How to change Default Gateway/Default Router in Sun Solaris

March 19, 2008 · Filed Under Networking 

The Default Gateway or the Default Router is the IP address (IPv4) to which all the traffic to any target destination(s) which does not have a route in the Routing Table of the server will be forwarded.

This Default Gateway is maintained in the file

/etc/defaultrouter [IPv4 only]

This IP Address should be in the same network or the subnet as that of the server itself.

If you wish to add or edit the Default Gateway or the Default Router in Sun Solaris, edit /etc/defaultrouter file and update the IP Address. One entry per line for one or more default gateways (very unlikely to have muktiple default gateways).

This file is read at the boot time and hence the server needs to be rebooted for the changes to take effect.

Instead of rebooting the server, update the Kernel IP Routing table first by deleting the existing Default Gateway or Default Router (if any) and then adding the new IP address.

To view the existing Kernel IP Routing table,

# netstat -rn

Routing Table: IPv4
Destination           Gateway           Flags  Ref     Use     Interface
——————– ——————– —– —– ———- ———
192.168.1.0          192.168.1.10         U         1        195 hme0
224.0.0.0            192.168.1.10          U          1          0 hme0
default              192.168.1.1             UG        1        325
127.0.0.1            127.0.0.1               UH        5         92 lo0

Now, remove the dexisting default gateway;

# route delete default 172.1.1.1

Add the new Default Gateway using:

# route add default 192.168.1.1

This should help. For a detailed Man Page for /etc/defaultrouter click here.

Comments

4 Responses to “How to change Default Gateway/Default Router in Sun Solaris”

  1. suma.N on July 2nd, 2008 3:16 am

    thanku this was useful infromation to me.

  2. srikanth on July 25th, 2008 12:18 am

    what is jumpstart inatalation

  3. siva on March 18th, 2009 1:11 pm

    It helped me a lot

  4. czezz on July 3rd, 2009 12:44 am

    This is helpful.
    Other way is to:
    insert entry into /etc/defaultrouter and execute:
    # svcadm restart physical

Leave a Reply