Zmieniam dhcp na static w / etc / network / interfaces (jak poniżej).
# The primary network interface
auto eth0
iface eth0 inet static
netmask 255.255.0.0
address 10.10.130.128
gateway 10.10.1.1
Następnie uruchom ponownie interfejs.
$ sudo ifdown eth0; sudo ifup eth0
...
$ ifconfig
eth0 Link encap:Ethernet
inet addr:10.10.130.128 Bcast:10.10.255.255 Mask:255.255.0.0
Tak więc zaczyna się nowy adres.
Ale DHCP wciąż tam jest?
$ ps aux | grep dhc
root ... dhclient3 -e IF_METRIC=100 -pf /var/run/dhclient.eth0.pid -lf /var/lib/dhcp/dhclient.eth0.leases -1 eth0
Czy to normalne? Jeśli nie, jak zrestartować interfejs w statycznym IP, jednocześnie zatrzymując DHCP?
Wielkie dzięki.