브리지 인터페이스가 있는 Linux 네트워크 콘솔

브리지 인터페이스가 있는 Linux 네트워크 콘솔

netconsole집에 있는 컴퓨터에서 활성화하려고 했지만 브리지 LAN 및 Wi-Fi에 몇 가지 문제가 있습니다.

  1. 인터페이스 이름을 지정하지 않으면 다음과 같이 실패합니다.

    $ 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.

  2. 새 인터페이스 이름을 명시적으로 지정하는 경우:

    $ 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좋아요, 그래서 그것은 다리의 일부를 좋아하지 않습니다 .

  3. 브리지를 사용하여 시도해 보겠습니다.

    $ 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
    

    브리지의 일부인 모든 인터페이스를 설정하려고 시도하지만 무선 인터페이스에서 실패하는 것 같습니다.

해결책이 존재합니까?

관련 정보