IPv6 Neighbor Discovery (ND) configuration manages both global ND protocol settings and per-interface ND behavior on NX-OS devices. Global settings control ND packet handling (switch-mode forwarding, fragment drop, queue behavior), static neighbor acceptance, cache management (aging interval, size limits, syslog rate), adjacency route distance, off-list timeout, and solicited neighbor advertisement tuning. Interface-level ND configuration provides per-interface control over Router Advertisement suppression (including MTU suppression), managed/other config flags, DAD attempts and intervals, hop limit, MTU advertisement, NS/RA intervals, reachable time, retransmission timer, MAC extract behavior, DNS suppression, and adjacency lifecycle management across loopback, VLAN, Ethernet, and port-channel interfaces.
Example 1: Global ND settings with switch-mode packet forwarding and cache tuning
nxos:
devices:
- name: LEAF1
configuration:
nd:
switch_packets: all
drop_nd_fragments: true
aging_interval: 3600
cache_limit: 16384
cache_syslog_rate: 100
Example 2: Interface-level ND with RA suppression on tenant SVIs
nxos:
devices:
- name: LEAF1
configuration:
interfaces:
vlans:
- id: 1010
vrf: BLUE
nd:
suppress_ra: true
managed_config_flag: true
- id: 1020
vrf: GREEN
nd:
suppress_ra: true
managed_config_flag: true
Example 3: Full ND configuration on a border leaf with global and interface-level settings
nxos:
devices:
- name: BORDER-LEAF1
configuration:
nd:
switch_packets: all
drop_nd_fragments: true
queue_packets: true
allow_static_neighbor_outside_subnet: true
aging_interval: 1800
cache_limit: 32768
cache_syslog_rate: 50
adjacency_route_distance: 250
off_list_timeout: 600
solicit_neighbor_advertisement: true
probe_interval_for_solicit_neighbor: 5
accept_solicit_neighbor_entry: accept
interfaces:
vlans:
- id: 1010
vrf: BLUE
nd:
suppress_ra: true
suppress_ra_mtu: true
managed_config_flag: true
dad_attempts: 1
hop_limit: 64
IPv6 Neighbor Discovery (ND) configuration manages both global ND protocol settings and per-interface ND behavior on NX-OS devices. Global settings control ND packet handling (switch-mode forwarding, fragment drop, queue behavior), static neighbor acceptance, cache management (aging interval, size limits, syslog rate), adjacency route distance, off-list timeout, and solicited neighbor advertisement tuning. Interface-level ND configuration provides per-interface control over Router Advertisement suppression (including MTU suppression), managed/other config flags, DAD attempts and intervals, hop limit, MTU advertisement, NS/RA intervals, reachable time, retransmission timer, MAC extract behavior, DNS suppression, and adjacency lifecycle management across loopback, VLAN, Ethernet, and port-channel interfaces.