Which Cisco IOS command(s) is used to empty the contents of a device's IPv6 neighbor table?
A) no ipv6 neighbor, ipv6 neighbor
B) clear ipv6 nd table
C) no nd table, nd table enable
D) clear ipv6 neighbor
D
Explanation: D) Because the IPv6 ND table (cache) works similarly to the IPv4 ARP cache, it can be useful at certain times to clear the contents and attempt to repopulate the table by pinging the intended destination. This will ensure that the cache information is up to date, especially when troubleshooting.
You might also like to view...
Show that a cost matrix is scale-invariant. For example, if the cost matrix is rescaled from C(i, j) ?? ?C(i, j), where ? is the scaling factor, the decision threshold (Equation 5.82) will remain unchanged.
What will be an ideal response?
Which of the following swaps the values of someNums[0] and someNums[1], which currently contain the values 8 and 3, respectively?
A. someNums[0] = someNums[1] someNums[1] = someNums[0] B. temp = someNums[0] someNums[0] = someNums[1] C. temp = someNums[0] someNums[0] = someNums[1] someNums[1] = temp D. someNums[0] = someNums[1] someNums[1] = someNums[0] someNums[1] = temp