Skip to content

Commit

Permalink
Add missing "vrf" token to IOS arp command
Browse files Browse the repository at this point in the history
  • Loading branch information
bewing committed Nov 15, 2017
1 parent bd22d71 commit 243d190
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion napalm/ios/ios.py
Original file line number Diff line number Diff line change
Expand Up @@ -1610,7 +1610,7 @@ def get_arp_table(self, vrf=C.ARP_VRF):

if vrf:
raise NotImplementedError("ARP VRF not implemented") # need test case
command = 'show arp {} | exclude Incomplete'.format(vrf)
command = 'show arp vrf {} | exclude Incomplete'.format(vrf)
else:
command = 'show arp | exclude Incomplete'

Expand Down

0 comments on commit 243d190

Please sign in to comment.