一个接口上不同子网上的多个 IP

一个接口上不同子网上的多个 IP

我已成功在同一张卡上配置来自不同子网的两个 IP。我将 /etc/network/interfaces 更改为:

auto eth0
iface eth0 inet static
    address 172.16.4.254
    netmask 255.255.255.0
    network 172.16.4.0
    broadcast 172.16.4.255
    gateway 172.16.4.1
    dns-nameservers 172.16.4.1

iface eth0 inet static
    address 192.168.1.10
    netmask 255.255.255.0

问题是第一个 IP 上的连接开始变得迟缓(响应时间大大增加)。例如,开始加载网页需要很长时间,但最终还是成功了。我需要一个控制台/配置解决方案。没有 GUI。

答案1

您无法eth通过这种方式进行配置。创建别名

auto eth0
iface eth0 inet static
address 192.168.1.10
netmask 255.255.255.0
broadcast 192.168.1.255
network 192.168.1.0
gateway 192.168.1.1

auto eth0:1
iface eth0:1 inet static
address 192.168.10.11
netmask 255.255.255.0
broadcast 192.168.10.255

相关内容