eth0을 목표로 설정할 수 없는 이유는 무엇입니까?

eth0을 목표로 설정할 수 없는 이유는 무엇입니까?

이것은 내 /etc/network/interfaces 파일입니다.

auto eth0
iface eth0 inet static
address 192.168.1.101
netmask 255.255.255.0
gateway 192.168.1.1

auto wlan0
iface wlan0 inet manual
wpa-driver nl80211
wpa-roam /etc/wpa_supplicant.conf
iface default inet static
address 192.168.1.101
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 192.168.1.1

우리 집 무선 라우터에서 Wi-Fi가 꺼지면 eth0이 활성화됩니다.
그런데 왜 IP가 192.168.1.101이 아닌가?
ifconfig 명령은 다른 IP를 표시합니다.

답변1

동일한 IP 주소는 물론 두 개의 서로 다른 네트워크/인터페이스에 동일한 네트워크를 제공할 수 없습니다.

관련 정보