web-dev-qa-db-ja.com

Ubuntu 16.04の静的IPアドレス

CLIのみを使用してUbuntu 16.04デスクトップで静的IPを編集できるようにします。ただし、それを行うと、同じマシンに2つのIPアドレスがあります。1つはDHCPサーバーによって割り当てられ、もう1つは/ etc/network/interfacesから取得されます。

プロセスはこちら

/ etc/network/interfacesを編集し、静的IPを追加しました。ファイルの内容:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback
auto enp0s3
iface enp0s3 inet static
    address 192.168.0.29
    netmask 255.255.255.0
    network 192.168.0.0
    broadcast 192.168.0.255
    gateway 192.168.0.1
    dns-nameservers 8.8.8.8 8.8.4.4

Ubuntu Network Managerを停止および削除しました:

Sudo service network-manager stop
Sudo apt-get purge network-manager

再起動されたネットワークサービス:

Sudo /etc/init.d/networking restart

また、インターフェイス自体を再起動しようとしました:

ifdown enp0s3 && ifup enp0s3

マシンを再起動しようとしましたが、助けにはなりませんでした。

その結果、マシンに2つのIPアドレスが割り当てられます。私はそれらの両方にsshしようとしましたが、それは実際には同じマシンです。最初の1つはDHCPサーバーから割り当てられます:

ping 192.168.0.189
PING 192.168.0.189 (192.168.0.189): 56 data bytes
64 bytes from 192.168.0.189: icmp_seq=0 ttl=64 time=0.341 ms
64 bytes from 192.168.0.189: icmp_seq=1 ttl=64 time=0.265 ms
64 bytes from 192.168.0.189: icmp_seq=2 ttl=64 time=0.315 ms
64 bytes from 192.168.0.189: icmp_seq=3 ttl=64 time=0.395 ms

2つ目は/ etc/network/interfacesを編集して割り当てられます

ping 192.168.0.29
PING 192.168.0.29 (192.168.0.29): 56 data bytes
64 bytes from 192.168.0.29: icmp_seq=0 ttl=64 time=0.380 ms
64 bytes from 192.168.0.29: icmp_seq=1 ttl=64 time=0.742 ms
64 bytes from 192.168.0.29: icmp_seq=2 ttl=64 time=0.313 ms
64 bytes from 192.168.0.29: icmp_seq=3 ttl=64 time=0.308 ms

ifconfigは、編集の前後で同じ結果を生成します。

ifconfig -a
enp0s3    Link encap:Ethernet  HWaddr 08:00:27:f6:b1:d3  
          inet addr:192.168.0.189  Bcast:192.168.0.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:13984 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1310 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:2496671 (2.4 MB)  TX bytes:124720 (124.7 KB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:252 errors:0 dropped:0 overruns:0 frame:0
          TX packets:252 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1 
          RX bytes:19145 (19.1 KB)  TX bytes:19145 (19.1 KB)

ここで何が起きているのでしょうか?

1
ernestasen

ps aux|grep dhclient 何かを見せます?はいの場合、killall dhclientおよびネットワークを再起動します。