본문 바로가기
Linux

리눅스 네트워크 인터페이스 설정 및 문제 해결(네트워크 진단)

by Yoon_estar 2024. 6. 2.
728x90
반응형

리눅스에서 네트워크 인터페이스를 설정하고 문제를 해결하는 것은 시스템 관리자가 반드시 알아야 할 중요한 작업 중 하나입니다.

네트워크 인터페이스 상태 확인

  • 이 명령어들은 현재 시스템에서 사용 가능한 네트워크 인터페이스와 그 상태를 보여줍니다.
# ifconfig
# ip addr

ethtool 명령어

  • ethtool은 네트워크 인터페이스의 상세 정보를 확인하고 설정을 변경할 수 있는 도구입니다. 인터페이스의 링크 상태, 속도, 듀플렉스 설정 등을 확인할 수 있습니다.

ethtool을 사용한 네트워크 인터페이스 진단

  • 네트워크 인터페이스 이름 확인
  • 인터페이스 상태 확인
  • 링크 감지 (Link detected no(yes))

결과 화면 예시

디바이스 인식 안됨

# ethtool  ens9f0n10
netlink error: no device matches name (offset 24)
netlink error: No such device
netlink error: no device matches name (offset 24)
netlink error: No such device
netlink error: no device matches name (offset 24)
netlink error: No such device
netlink error: no device matches name (offset 24)
netlink error: No such device
netlink error: no device matches name (offset 24)
netlink error: No such device

인터페이스는 있지만 링크 인식 안됨

# ethtool  ens2f0
Settings for ens2f0:
        Supported ports: [  ]
        Supported link modes:   10000baseT/Full
                                1000baseX/Full
                                10000baseSR/Full
                                10000baseLR/Full
        Supported pause frame use: Symmetric Receive-only
        Supports auto-negotiation: Yes
        Supported FEC modes: Not reported
        Advertised link modes:  10000baseT/Full
                                1000baseX/Full
                                10000baseSR/Full
                                10000baseLR/Full
        Advertised pause frame use: No
        Advertised auto-negotiation: Yes
        Advertised FEC modes: Not reported
        Speed: Unknown!
        Duplex: Unknown! (255)
        Auto-negotiation: off
        Port: Other
        PHYAD: 0
        Transceiver: internal
        Supports Wake-on: d
        Wake-on: d
        Current message level: 0x00000007 (7)
                               drv probe link
        Link detected: no

인터페이스 있고 링크 인식 됨 

# ethtool  ens9f0np0
Settings for ens9f0np0:
        Supported ports: [ TP ]
        Supported link modes:   1000baseT/Full
                                10000baseT/Full
        Supported pause frame use: Symmetric Receive-only
        Supports auto-negotiation: Yes
        Supported FEC modes: RS  BASER
        Advertised link modes:  1000baseT/Full
                                10000baseT/Full
        Advertised pause frame use: Symmetric
        Advertised auto-negotiation: Yes
        Advertised FEC modes: RS         BASER
        Speed: 1000Mb/s
        Duplex: Full
        Auto-negotiation: on
        Port: Twisted Pair
        PHYAD: 12
        Transceiver: internal
        MDI-X: Unknown
        Supports Wake-on: g
        Wake-on: g
        Current message level: 0x00002081 (8321)
                               drv tx_err hw
        Link detected: yes

반응형