在 /etc/network/interfaces 中的第二个适配器上设置静态 IP 会中断第一个 dhcp 连接

在 /etc/network/interfaces 中的第二个适配器上设置静态 IP 会中断第一个 dhcp 连接

我有两个适配器,第一个适配器始终具有静态 IP,第二个适配器始终通过 DHCP 获取 IP。目前,我的第二个适配器通过 DHCP 获取其 IP,但无法通过网络 ping/访问。如果我从端口 #1 中删除静态 IP 分配,那么我现在在 DHCP 适配器上有一个功能齐全的网络。

auto lo
iface lo inet loopback

# Port 1
auto enp1s0
    iface enp1s0 inet static
    address 10.0.0.107
    netmask 255.255.255.0
    gateway 10.0.0.1

# Port 2
allow-hotplug enp2s0
iface enp2s0 inet dhcp

那么我应该进行哪些更改以便我的端口 1 静态 IP 分配不会干扰端口 2 DHCP 网络?

相关内容