Section 17.5: 네트워크 인터페이스 세부 사항

Ifconfig

기기상의 사용 가능한 모든 네트워크 인터페이스 나열하기

$ ifconfig -a

특정 인터페이스의 상세 정보를 나열하기

사용법: $ ifconfig <interface>

예제:

$ ifconfig eth0 eth0 Link encap:Ethernet HWaddr xx:xx:xx:xx:xx:xx inet addr:x.x.x.x Bcast:x.x.x.x Mask:x.x.x.x inet6 addr: xxxx::xxx:xxxx:xxxx:xxxx/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:4426618 errors:0 dropped:1124 overruns:0 frame:0 TX packets:189171 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:382611580 (382.6 MB) TX bytes:36923665 (36.9 MB) Interrupt:16 Memory:fb5e0000-fb600000

Ethtool - 네트웍 드라이버와 하드웨어 설정을 확인하기

사용법: $ ethtool <interface>

예제:

$ ethtool eth0 Settings for eth0: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Speed: 1000Mb/s Duplex: Full Port: Twisted Pair PHYAD: 1 Transceiver: internal Auto-negotiation: on MDI-X: on (auto) Supports Wake-on: pumbg Wake-on: g Current message level: 0x00000007 (7) drv probe link Link detected: yes

ip - 라우팅, 기기, 라우팅 처리 정책 및 터널링 관련 정보를 표시하거나 변경하기

사용법: $ ip { link | ... | route | macsec } (man ip 명령을 통해 전체 옵션 목록을 확인할 수 있다)

예제

  • 네트웍 인터페이스들을 나열한다
    $ ip link show
  • 인터페이스 eth0 의 이름을 wan 으로 변경한다
    $ ip link set dev eth0 name wan
  • 인터페이스 eth0 를 활성화 (혹은 비활성화 - down) 시킨다
    $ ip link set dev eth0 up
  • 각 인터페이스들의 주소 정보를 나열한다
    $ ip addr show
  • IP 와 서브넷 마스크 정보 (255.255.255.0) 를 추가 (혹은 제거 - del) 한다
    $ ip addr add 1.2.3.4/24 brd + dev eth0
본 문서는 Linux Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.

[출처] https://books.goalkicker.com/GitBook/

반응형

+ Recent posts