eth0과 eth1이라는 두 개의 인터페이스가 있는 장치가 있습니다. 하나는 DHCP 서버에서 IP를 가져와야 하고 다른 하나는 정적으로 IP를 가져와야 합니다.
내 /etc/network/interfaces
파일이 다음과 같이 구성된 경우:
auto lo
iface lo inet loopback
auto eth1
iface eth1 inet dhcp
iface eth1 inet6 auto
auto eth0
iface eth0 inet static
address 10.10.10.10
netmask 255.255.255.0
모든 것이 괜찮습니다. eth1은 DHCP 서버에서 IP를 가져오고 eth0은 주어진 정보를 기반으로 IP를 정적으로 설정합니다. 그러나 파일의 순서를 변경하려고 하면 예를 들어
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 10.10.10.10
netmask 255.255.255.0
auto eth1
iface eth1 inet dhcp
iface eth1 inet6 auto
이 경우 eth1은 IP를 얻을 수 없습니다.
/etc/network/interface는 각 인터페이스의 순서를 고려하여 관리자가 DHCP를 통해 IP를 얻는 인터페이스를 먼저 배치한 다음 정적 인터페이스를 배치해야 합니까, 아니면 제가 수행 중인 구성에 다른 버그가 있습니까?