/ etc / network / interfaces에서 dhcp를 static으로 수정합니다 (아래 참조).
# 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
그런 다음 인터페이스를 다시 시작하십시오.
$ 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
그래서 새로운 주소가 시작됩니다.
그러나 DHCP가 여전히 있습니까?
$ 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
그게 정상인가요? 그렇지 않은 경우 DHCP를 중지하면서 정적 IP에서 인터페이스를 다시 시작하는 방법은 무엇입니까?
고마워