Ubuntu サーバーと Windows サーバーの両方が 2 つの VLAN に接続されています。
両方のマシンに 2 つの NIC があります。
- VLAN2のスキームは192.168.2.0 /24です
- VLAN100には172.20.100.64 /27があります。
VLAN2 ネットワークから Windows サーバーの VLAN100 アドレスに ping を実行できますが、Ubuntu サーバーの VLAN100 アドレスに ping を実行できません。
Ubuntu サーバーにアクセスするには、VLAN100 にいる必要があります。
私の /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