ip 링크 및 ip addr 출력 의미


15

나는 리눅스 박스 에서 명령의 출력 ip linkip addr의미가 정확히 무엇인지 설명을 찾고있다 .

# ip link
3: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT qlen 1000
link/ether 00:a1:ba:51:4c:11 brd ff:ff:ff:ff:ff:ff
4: eth1: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN mode DEFAULT qlen 1000
link/ether 00:a1:ba:51:4c:12 brd ff:ff:ff:ff:ff:ff

정확히 무엇이다 LOWER_UP, NO-CARRIER다른 플래그와? http://download.vikis.lt/doc/iproute-doc-2.6.32/ip-cref.ps 에서 참조를 찾았 지만 완전한 정보가 포함되어 있지 않고 매뉴얼 페이지가 충분하지 않습니다.


swlx01.hs-esslingen.de처럼 보인다는 링크 참조 :-(에 도달 할 수없는, 그래서 다운
아틸라 Csipak

1
끊어진 링크가 업데이트됩니다. 그럼에도 불구하고 답변에서 참조 된 매뉴얼 페이지가 더 나은 정보 소스입니다.
Zaboj Campula

답변:


19

그것들은 인터페이스의 플래그입니다. 그것들은 netdevice(7)맨 페이지에 문서화되어 있습니다. 아래는 관련 부분 (알파벳순)입니다.

IFF_ALLMULTI      Receive all multicast packets.
IFF_AUTOMEDIA     Auto media selection active.
IFF_BROADCAST     Valid broadcast address set.
IFF_DEBUG         Internal debugging flag.
IFF_DORMANT       Driver signals dormant (since Linux 2.6.17)
IFF_DYNAMIC       The addresses are lost when the interface goes down.
IFF_ECHO          Echo sent packets (since Linux 2.6.25)
IFF_LOOPBACK      Interface is a loopback interface.
IFF_LOWER_UP      Driver signals L1 up (since Linux 2.6.17)
IFF_MASTER        Master of a load balancing bundle.
IFF_MULTICAST     Supports multicast
IFF_NOARP         No arp protocol, L2 destination address not set.
IFF_NOTRAILERS    Avoid use of trailers.
IFF_POINTOPOINT   Interface is a point-to-point link.
IFF_PORTSEL       Is able to select media type via ifmap.
IFF_PROMISC       Interface is in promiscuous mode. 
IFF_RUNNING       Resources allocated.
IFF_SLAVE         Slave of a load balancing bundle.
IFF_UP            Interface is running.

따라서 LOWER_UP물리적 레벨에 신호가 있음을 의미합니다 (즉, 활성화 된 것이 네트워크 인터페이스에 연결되어 있음). NO-CARRIER, 정반대입니다. 물리적 레벨에서 신호가 감지되지 않습니다.


2
얼마나 재미 NO-CARRIER있다 없다 에 설명 netdevice(7)...
피터 V. Mørch

3
NO-CARRIER실제로 가져 오거나 설정할 수있는 플래그 가 아니기 때문 입니다. 의 조합으로 정의됩니다 IFF_UP and not IFF_RUNNING.
xhienne
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.