2

I type the "neat" command (CentOS) A network configuration pop-up window is displayed. I double click on active eth1 And I change the Default gaeway address

Is there anyway to automate this?

shantanuo
  • 3,579
  • 8
  • 49
  • 66

2 Answers2

2

You can use the two commands below

route del default # This removes the current default gateway
route add default gw "ipaddress" # This adds the new default gateway

This way you do not even have to restart the network.

proy
  • 1,229
  • 10
  • 10
1

the gateway is saved in the file /etc/sysconfig/network. in the file you'll find an entry GATEWAY=a.b.c.d. you could change this with:

sed -i -e 's/ol\.d\.i\.p/ne\.w\.i\.p/' /etc/sysconfig/network
Christian
  • 4,703
  • 2
  • 24
  • 27
  • 1
    Don't forget to either manually remove/replace the old entry, or do a 'service network restart', or 'reboot', to have the change take effect. Just changing the config files doesn't translate into an immediate change. – David Mackintosh Jan 15 '10 at 17:57