Debian Jessie의 KVM VM에서 사용할 수 있는 eth1 두 번째 네트워크 카드가 있지만 부팅 후 수동으로 추가할 때만 나타납니다. 내 /etc/network/interfaces는 다음과 같습니다
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
iface eth0 inet static
address 192.168.1.167
netmask 255.255.255.0
gateway 192.168.1.1
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 8.8.8.8
# The secondary network interface
allow-hotplug eth1
iface eth0 inet static
address 1.2.3.4
netmask 255.255.255.0
gateway 1.2.3.1
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 8.8.8.8
post-up route del default gw 192.168.1.1 eth0
post-up route add default gw 1.2.3.1 eth1
하지만 시작한 후에는 eth0이 192.168.1.1과 일치한다는 것만 보여줍니다. 다음과 같이 eth1을 수동으로 추가하면:
ifconfig eth1 1.2.3.4 netmask 255.255.255.0 up
route del default gw 192.168.1.1 eth0
route add default gw 1.2.3.1 eth1
모든 트래픽을 공개 정적 1.2.3.4를 통해 라우팅합니다. 내가 무엇을 놓치고 있나요?
답변1
이미 iface eth0 inet static
2부에서 작성했지만 eth1
.