change networks
Hi, I am going to migrate an Debian server from the current network to a new
network. It does use DHCP so that part should not be a problem. How do I
change the gateway and dns settings to get everything to work in the new
network?
Most of what I can find specifies changing a static ip range. For example:
iface eth0 inet static
address 192.168.0.111
netmask 255.255.255.0
gateway 192.168.0.1
up route add -net 10.0.0.0 netmask 255.0.0.0 gw 192.168.0.2 dev
$IFACE
down route del -net 10.0.0.0 netmask 255.0.0.0 gw 192.168.0.2 dev
$IFACE
up echo Interface $IFACE going up | /usr/bin/logger -t ifup
down echo Interface $IFACE Going down | /usr/bin/logger -t ifdown
I don't know that this is what I need though.
Any help would be greatly appreciated.
Reply to: