How to display the IPv6 Neighbor Discovery Table in Windows

To display the Neighbor Discovery Table (ND Table) in Windows enter the following into the command prompt:

> netsh interface ipv6 show neighbors

On your local machine, windows maps IPv6 addresses to physical addresses (MAC addresses) in the Neighbor Discovery Table. This is similar to the Address Resolution Protocol cache (ARP cache) which maps IPv4 addresses to physical addresses.

Here we used netsh, a command-line utility that enables you to access and modify your local machine’s networking configurations, to access the Neighbor Discovery Table. Below is a sample output from netsh which identifies the IPv6 address and physical address of the router.

> netsh interface ipv6 show neighbors
Interface 16: Wi-Fi
Internet Address            Physical Address    Type
- - - - - - - - -           - - - - - - -       - - - - fe80::2a80:88ff:efcd:8a41   28-80-88-dc-6a-41   Reachable(Router)

 
38
Kudos
 
38
Kudos

Now read this

How to read data from an Excel .xlsx file in R

To read directly from a .xlsx in the same directory as your R script: > data <- read.xlsx(“yourdata.xlsx”) … or … To read from a workspace directory containing a .xlsx file: > wdir = “C:/workspace/yourdirectory” > data <-... Continue →