CCNP • Practice Test 47
Free CCNP practice test — 15 questions with explanations. Set 47. No signup required.
A network engineer uses NAPALM to retrieve the ARP table from a Cisco IOS-XE device:
```python
from napalm import get_network_driverdriver = get_network_driver('ios') device = driver('192.168.1.1', 'admin', 'cisco123') device.open() arp_table = device.get_arp_table()
print(arp_table)device.close() ```
What is the expected data type of arp_table?