모두. 가상 인터페이스를 만들었습니다.
auto eth0
iface eth0 inet dhcp
auto eth0:1
iface eth0:1 inet static
address 192.168.2.40
netmask 255.255.255.0
ipconfig를 사용하여 인터페이스를 볼 수 있습니다
eth0 Link encap:Ethernet HWaddr b8:27:eb:75:61:2a
inet addr:192.168.2.26 Bcast:192.168.2.255 Mask:255.255.255.0
inet6 addr: fe80::cbbf:5f7:74ff:7744/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:702 errors:0 dropped:0 overruns:0 frame:0
TX packets:1135 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:111672 (109.0 KiB) TX bytes:165411 (161.5 KiB)
eth0:1 Link encap:Ethernet HWaddr b8:27:eb:75:61:2a
inet addr:192.168.2.40 Bcast:192.168.2.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
인터페이스 1(eth0)이 아직 DHCP 주소를 얻지 못했거나 주소를 업데이트할 수 없는 경우에만 작동하도록 인터페이스 2(eth0:1)를 구성할 수 있는지 궁금합니다. 인터페이스 2(eth0:1)가 실행 중이고 인터페이스 1(eth0)에 DHCP 주소가 있으면 인터페이스 1(eth0)이 우선 순위를 가지며 인터페이스 2(eth0:1)는 작동을 중지합니다.
감사합니다!