我有一個 ubuntu 伺服器和一個 windows 伺服器,兩者都連接在兩個 VLAN 中。
兩台機器都有兩個網卡。
- VLAN2 的方案為 192.168.2.0 /24
- VLAN100 有 172.20.100.64 /27。
我可以從 VLAN2 網路 ping 通 Windows 伺服器 VLAN100 位址,但無法 ping 通 ubuntu 伺服器 VLAN100 位址。
我必須位於 VLAN100 中才能存取 ubuntu 伺服器。
我的 /etc/network/interfaces 檔案配置:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
#source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet static
address 192.168.2.252
netmask 255.255.255.0
gateway 192.168.2.1
auto eno2
iface eno2 inet static
address 172.20.100.65
netmask 255.255.255.224