안녕하세요 Linux 초보자님, 실수를 용서해주세요.
네트워크 네임스페이스를 구성했습니다.로컬 라우팅 테이블그리고 네임스페이스에서 eth3 인터페이스를 시작했습니다.
# ip netns exec local-routeTable ifconfig
eth3: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 9000
inet 10.2.32.1 netmask 255.255.240.0 broadcast 10.2.47.255
inet6 fe80::b3ff:fe12:84d7 prefixlen 64 scopeid 0x20<link>
ether 02:00:b3:12:84:d7 txqueuelen 1000 (Ethernet)
RX packets 503 bytes 64792 (63.2 KiB)
RX errors 0 dropped 283 overruns 0 frame 0
TX packets 152 bytes 30010 (29.3 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
지금까지는 괜찮았지만 이제 루트/기본 네임스페이스에서 하위 인터페이스 eth3.1을 시작하려고 합니다.
# cat /etc/sysconfig/network-scripts/ifcfg-eth3.1
DEVICE=eth3.1
BOOTPROTO=none
IPADDR=10.2.16.1
ONBOOT=yes
VLAN=yes
NETMASK=255.255.240.0
그러나 지속적으로 이 문제를 해결합니다.
[root@wdc-10-206-223-62 tmp]# ifup eth3.1
WARN : [ifup] You are using 'ifup' script provided by 'network-scripts', which are now deprecated.
WARN : [ifup] 'network-scripts' will be removed in one of the next major releases of RHEL.
WARN : [ifup] It is advised to switch to 'NetworkManager' instead - it provides 'ifup/ifdown' scripts as well.
Error: Connection activation failed: Failed to find a compatible device for this connection
eth3 인터페이스와 동일한 네임스페이스 내에서 하위 인터페이스를 시작하려고 해도 여전히 동일한 문제로 인해 실패합니다.
[root@wdc-10-206-223-62 tmp]# ip netns exec local-routeTable ifup eth3.1
WARN : [ifup] You are using 'ifup' script provided by 'network-scripts', which are now deprecated.
WARN : [ifup] 'network-scripts' will be removed in one of the next major releases of RHEL.
WARN : [ifup] It is advised to switch to 'NetworkManager' instead - it provides 'ifup/ifdown' scripts as well.
Error: Connection activation failed: Failed to find a compatible device for this connection
저는 네임스페이스를 처음 접합니다. 이 문제를 해결하고 네임스페이스에 대해 더 자세히 알아볼 수 있는 조언을 주시면 감사하겠습니다.