Ubuntu 17.10 更新 DHCP IP

Ubuntu 17.10 更新 DHCP IP

我们刚刚安装了 Ubuntu 17.10 服务器,在安装过程中,它被分配了 IP 地址192.168.50.84

我们现在已经192.168.50.107在 DHCP 服务器上保留了 IP 地址。

这种netplan配置令人惊讶,而且在我看来,/etc/network/interfaces做起来更有意义。

每次服务器重启时,它都会将 IP 地址设置为192.168.50.84,并且似乎不会向 DHCP 请求 IP 地址。

如果我们执行:

须藤 dhclient -r;须藤 dhclient

服务器192.168.50.107从 DHCP 获取所需的 IP 地址 ()。

那么,出了什么问题netplan?为什么它在启动或网络重启时不要求输入 IP 地址?每次启动时,我们都会在日志中看到这一行:Mar 6 18:48:08 blues-web-proxy systemd-networkd[723]: eth0: DHCPv4 address 192.168.50.84/24 via 192.168.50.140

谢谢大家的回复。

我们没有做任何配置,安装过程只询问是否需要使用代理服务器 - 回答否。

/etc/netplan/01-netcfg.yaml

# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
  version: 2
  renderer: networkd
  ethernets:
    eth0:
      dhcp4: yes

/etc/网络/接口

# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
# Generated by debian-installer.


# The loopback interface
auto lo
iface lo inet loopback

/etc/hosts

127.0.0.1       localhost
127.0.1.1       blues-web-proxy.bluescreen.local        blues-web-proxy

# The following lines are desirable for IPv6 capable hosts
::1     localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

答案1

可能 netplan 留下了一些杂散设置,具体取决于您的配置方式。检查常见的“静态 ip”设置,例如 /etc/network/interfaces、/etc/hostname 和 /etc/hosts。

相关内容