Debian 11에서 두 개의 이더넷 eth0과 eth1을 구성하는 방법은 무엇입니까?

Debian 11에서 두 개의 이더넷 eth0과 eth1을 구성하는 방법은 무엇입니까?

Debian 11.6에서 eth0과 eth1을 구성하고 싶습니다.

현재 다음과 같이 구성했습니다.

# 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.125
netmask 255.255.255.0
gateway 192.168.1.1

allow-hotplug eth1
iface eth1 inet static


address 192.168.1.126
netmask 255.255.255.0
gateway 192.168.1.2

구성 후에는 eth1 대신 eth0만 ping할 수 있습니다.

어떤 도움이라도 대단히 감사하겠습니다!

답변1

route add -net 192.168.1.126 netmask 255.255.255.255 gw 192.168.1.2 dev eth1

관련 정보