当前位置: 首页>>技术教程>>正文


Ubuntu 18.04新的Netplan/IP配置(pointopoint?)

, , ,

问题描述

我安装了Proxmox的Root-Server。到目前为止,我一直有Ubuntu16。现在,我将VM升级到Ubuntu 18,并且需要新netplan配置的示例。

这是我的旧接口文件:

auto ens18
    iface ens18 inet static
    address 195.201.52.XXX
    netmask 255.255.255.255
    pointopoint 195.201.8.YYY
    gateway 195.201.8.YYY
    dns-nameservers 213.133.98.98 213.133.99.99 213.133.100.100 8.8.8.8

因为我找不到新的netplan的选项点,所以我正在努力激活此VM。我知道我可以简单地再次安装ifupdown。但是,如果有可能,我想保留新的netplan

附加信息:看看我的配置文件:https://pastebin.com/Havqfw7t

来宾系统和主机系统上均启用了IPv4转发。

最佳方法

您在”additional info”粘贴框中有正确的想法。应用与您的问题相同的IP地址:

network:
  version: 2
  renderer: networkd
  ethernets:
    ens18:
      dhcp4: no
      dhcp6: no
      addresses: [195.201.52.XXX/32]
      routes:
      - to: 0.0.0.0/0
        via: 195.201.8.YYY
        on-link: true
      nameservers:
        addresses: [213.133.98.98,213.133.99.99,213.133.100.100,8.8.8.8]

但是,您的主机配置中的多个接口上似乎都具有相同的IP地址。那可能没有帮助。

基本上,您对point-to-point的全部需求是通过对等方的IP将静态路由添加到0.0.0.0/0。并确保设置路由’on-link: true’。

我们也将其放在netplan.io网站上:https://netplan.io/examples#directly-connected-gateway

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/9345.html,未经允许,请勿转载。