ndisc_cache란 무엇입니까?

ndisc_cache란 무엇입니까?

다음을 사용하고 싶다고 가정해 보겠습니다.

$ ip ntable show dev eth0 
inet arp_cache 
    dev eth0 
    refcnt 4 reachable 20744 base_reachable 30000 retrans 1000 
    gc_stale 60000 delay_probe 5000 queue 31 
    app_probes 0 ucast_probes 3 mcast_probes 3 
    anycast_delay 1000 proxy_delay 800 proxy_queue 64 locktime 1000 

inet6 ndisc_cache 
    dev eth0 
    refcnt 1 reachable 40768 base_reachable 30000 retrans 1000 
    gc_stale 60000 delay_probe 5000 queue 31 
    app_probes 0 ucast_probes 3 mcast_probes 3 
    anycast_delay 1000 proxy_delay 800 proxy_queue 64 locktime 0 

무엇인가요 ndisc_cache?

답변1

IPv4 네트워크에서는 이웃 테이블이 사용됩니다.주소 확인 프로토콜. 이러한 테이블을 종종 "ARP 테이블"이라고 합니다. IP 주소(네트워크 계층의 주소)를 MAC 주소(링크 계층의 주소)로 확인하거나 그 반대로 확인합니다. arp -a이 테이블의 항목을 명령하거나 나열할 수 있습니다 ip neigh show.

반면, IPv6 인터넷 프로토콜 제품군에서 ARP 프로토콜의 기능은 다음과 같은 상위 수준 프로토콜에 의해 제공됩니다.이웃 검색 프로토콜.

ip ntable show명령은 특정 네트워크 장치의 인접 테이블에 대한 정보를 제공하므로 다음과 같습니다.

  • arp_cacheIPv4 네트워크의 ARP 테이블(ARP 캐시)을 나타냅니다.
  • ndisc_cacheIPv6 네트워크에 대한 NDP 테이블(이웃 캐시)을 나타냅니다.

관련 정보