INCOMPLETE | Address resolution is in progress and the link-layer address of the neighbor has not yet been determined. |
REACHABLE | The neighbor is known to have been reachable recently. |
STALE | The neighbor is no longer known to be reachable (not used by higher level protocol for reachable-time) but still valid and used for forwarding. Until any control packet is sent to the neighbor, no attempt will be made to verify its reachability. |
DELAY | The neighbor is no longer known to be reachable, and traffic has recently been sent to the neighbor. Rather than probing the neighbor immediately, delay sending probes for a short while to give upper-layer protocols a chance to provide reachability confirmation. |
PROBE | The neighbor is no longer known to be reachable, and probes are being sent to verify reachability. |
FAILED | Address resolution failed. No response received from the neighbor. |
reachable-time | The amount of time the entry is in REACHABLE state. The default value is 60 seconds. Once a neighbor is found, the entry is considered reachable for at least a random value between (A) and (3xA) where: A = reachable-time /2 Once entry reachability expires it moves to STALE state. The entry's reachability is extended if it receives positive feedback (ARP reply/NA). |
stale-time | Determines how often to check for stale neighbor entries. The default value is 1440 seconds. Once the stale-timer expires, the entry is marked for garbage collection. |
arp-aging-time | The approximate amount of time an ARP entry is valid. The default value is 1500 seconds. Aging time is configured internally as: aging-time = reachable-time + stale-time |
#configure terminal | Enter the configure mode. |
(config)#interface xe1 | Enter interface mode. |
(config-if)#ip address 2.2.2.2/24 | Configure IP address on the interface. |
(config-if)#commit | Commit the candidate configuration to the running configuration |
(config-if)#exit | Exit interface mode. |
(config)#arp 2.2.2.3 0000.0000.0003 | Configure ARP entry for neighbor. |
(config-if)#commit | Commit the candidate configuration to the running configuration |
(config)#exit | Exit configure mode. |
#configure terminal | Enter the configure mode. |
(config)#interface xe1 | Enter interface mode. |
(config-if)#ip address 2.2.2.3/24 | Configure IP address on the interface. |
(config-if)#commit | Commit the candidate configuration to the running configuration |
(config-if)#exit | Exit interface mode. |
(config)#arp 2.2.2.2 0000.0000.0004 | Configure ARP entry for neighbor. |
(config-if)#commit | Commit the candidate configuration to the running configuration |
(config)#exit | Exit configure mode. |
#configure terminal | Enter the configure mode. |
(config)#interface xe1 | Enter interface mode. |
(config-if)#ipv6 address 3ffe:506::1/48 | Configure IPv6 address on the interface. |
(config-if)#commit | Commit the candidate configuration to the running configuration |
(config-if)#exit | Exit interface mode. |
(config)# ipv6 neighbor 3ffe:506::2 xe1 0000.0000.0004 | Configure neighbor IPv6 address and MAC. |
(config-if)#commit | Commit the candidate configuration to the running configuration |
(config)#exit | Exit configure mode. |
#configure terminal | Enter the configure mode. |
(config)#interface xe1 | Enter interface mode. |
(config-if)#ipv6 address 3ffe:506::2/48 | Configure IPv6 address on the interface. |
(config-if)#commit | Commit the candidate configuration to the running configuration |
(config-if)#exit | Exit interface mode. |
(config)# ipv6 neighbor 3ffe:506::1 xe1 0000.0000.0003 | Configure neighbor IPv6 address and MAC. |
(config-if)#commit | Commit the candidate configuration to the running configuration |
(config)#exit | Exit configure mode. |