1. apt purge nplan netplan.io
  2. apt install ifupdown resolvconf
  3. vi /etc/network/interfaces 或者 cloud-init clean
  4. systemctl disable systemd-networkd-wait-online
  5. reboot

附加 ,关闭 SLAAC
sysctl.conf

net.ipv6.conf.all.autoconf = 0
net.ipv6.conf.all.accept_ra = 0

弃用netplan的原因就是因为不知道如何关闭 slaac 获取IPV6
使用 dhcp6: no 都无法关闭


根据 https://askubuntu.com/questions/1004509/slaac-wont-disable-on-ubuntu-17-10 的查找
在netpan的网卡配置文件中使用accept-ra: no关闭slaac功能
范本。

network:
  ...
  ethernets:
    eth0:
      ...
      dhcp6: no
      accept-ra: no

标签: none

添加新评论