我有一台 Ubuntu 服务器(DELL R320),配备两个 NIC。
eth0 和 eth1 连接在同一子网 192.168.10.0/24
eth0 连接到 SW1,IP 为 192.168.10.15,GW 为 192.168.10.1/24
eth1 连接到 SW2,IP 为 192.168.10.16(无 GW IP 分配)
SW1 和 SW2 通过 HSRP 连接在同一子网上。
eth0 可以访问且没有问题,但 eth1 没有启动“可从 eth0 访问,但无法从交换机访问”
答案1
您的交换机可能在其他子网上有 IP 地址。eth1 未设置为默认网关,因此无法访问交换机。您可以在以下位置为 eth1 添加静态路由/etc/network/interfaces
:
auto eth1
iface eth1 inet static
address 192.168.10.16
netmask 255.255.255.0
up route add -net 192.168.10.0 netmask 255.255.255.0 gw 192.168.10.1
重启网络服务:
sudo /etc/init.d/networking restart