Hello,
On linux I use the following command to display the neighbor status:
The above command shows in the last column the status of neighbors(permanent | noarp | stale | reachable ) as in the example below.
The info I need is the last column. Is there a way to show this info on FreeBSD?
On linux I use the following command to display the neighbor status:
ip -4 neigh show dev <interface>
The above command shows in the last column the status of neighbors(permanent | noarp | stale | reachable ) as in the example below.
Code:
192.168.0.2 lladdr aa:bb:cc:dd:ee:ff PERMANENT
192.168.0.3 lladdr aa:bb:cc:dd:ee:ff NOARP
192.168.0.4 lladdr aa:bb:cc:dd:ee:ff STALE
192.168.0.5 lladdr aa:bb:cc:dd:ee:ff REACHABLE
The info I need is the last column. Is there a way to show this info on FreeBSD?