![브리지 인터페이스가 있는 Linux 네트워크 콘솔](https://linux55.com/image/92859/%EB%B8%8C%EB%A6%AC%EC%A7%80%20%EC%9D%B8%ED%84%B0%ED%8E%98%EC%9D%B4%EC%8A%A4%EA%B0%80%20%EC%9E%88%EB%8A%94%20Linux%20%EB%84%A4%ED%8A%B8%EC%9B%8C%ED%81%AC%20%EC%BD%98%EC%86%94.png)
netconsole
집에 있는 컴퓨터에서 활성화하려고 했지만 브리지 LAN 및 Wi-Fi에 몇 가지 문제가 있습니다.
인터페이스 이름을 지정하지 않으면 다음과 같이 실패합니다.
$ sudo modprobe netconsole [email protected]/,[email protected]/A0:F3:C1:FF:4C:70 modprobe: ERROR: could not insert 'netconsole': No such device
dmesg 출력:
netpoll: netconsole: local port 6666 netpoll: netconsole: local IPv4 address 192.168.0.1 netpoll: netconsole: interface 'eth0' netpoll: netconsole: remote port 6666 netpoll: netconsole: remote IPv4 address 192.168.0.2 netpoll: netconsole: remote ethernet address a0:f3:c1:ff:4c:70 netpoll: netconsole: eth0 doesn't exist, aborting netconsole: cleaning up
찾으려고 시도
eth0
하지만 실패합니다. systemd가 이름을enp9s0
.새 인터페이스 이름을 명시적으로 지정하는 경우:
$ sudo modprobe netconsole [email protected]/enp9s0,[email protected]/A0:F3:C1:FF:4C:70 modprobe: ERROR: could not insert 'netconsole': Device or resource busy
dmesg 출력:
netpoll: netconsole: local port 6666 netpoll: netconsole: local IPv4 address 192.168.0.1 netpoll: netconsole: interface 'enp9s0' netpoll: netconsole: remote port 6666 netpoll: netconsole: remote IPv4 address 192.168.0.2 netpoll: netconsole: remote ethernet address a0:f3:c1:ff:4c:70 netpoll: netconsole: enp9s0 is a slave device, aborting netconsole: cleaning up
enp9s0
좋아요, 그래서 그것은 다리의 일부를 좋아하지 않습니다 .브리지를 사용하여 시도해 보겠습니다.
$ sudo modprobe netconsole [email protected]/br0,[email protected]/A0:F3:C1:FF:4C:70 modprobe: ERROR: could not insert 'netconsole': Unknown error 524
dmesg 출력:
netpoll: netconsole: local port 6666 netpoll: netconsole: local IPv4 address 192.168.0.1 netpoll: netconsole: interface 'br0' netpoll: netconsole: remote port 6666 netpoll: netconsole: remote IPv4 address 192.168.0.2 netpoll: netconsole: remote ethernet address a0:f3:c1:ff:4c:70 netpoll: (null): wlp6s0 doesn't support polling, aborting netconsole: cleaning up
브리지의 일부인 모든 인터페이스를 설정하려고 시도하지만 무선 인터페이스에서 실패하는 것 같습니다.
해결책이 존재합니까?