우분투 서버와 Windows 서버가 모두 두 개의 VLAN에 연결되어 있습니다.
두 시스템 모두 두 개의 NIC가 있습니다.
- VLAN2에는 구성표 192.168.2.0 /24가 있습니다.
- VLAN100에는 172.20.100.64/27이 있습니다.
VLAN2 네트워크에서 Windows 서버 VLAN100 주소를 ping할 수 있지만 ubuntu 서버 VLAN100 주소를 ping할 수 없습니다.
우분투 서버에 접속하려면 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