NeighborΒΆ
The maximum number of neighbors entries is limited.
To change these limits, do:
vrouter running config# system
vrouter running system# network-stack
vrouter running network-stack# neighbor
vrouter running neighbor# ipv4-max-entries 4096
vrouter running neighbor# ipv6-max-entries 4096
vrouter running neighbor# commit
Warning
If the fast path is running, a similar change is required in fast path limits configuration.
To display the neighbor state:
vrouter> show state / system network-stack neighbor
neighbor
ipv4-max-entries 1024
ipv6-max-entries 1024
..
The same configuration can be made using this NETCONF XML configuration:
vrouter running neighbor# show config xml absolute
<config xmlns="urn:6wind:vrouter">
<system xmlns="urn:6wind:vrouter/system">
<network-stack>
<neighbor>
<ipv4-max-entries>4096</ipv4-max-entries>
<ipv6-max-entries>4096</ipv6-max-entries>
</neighbor>
</network-stack>
</system>
</config>