Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions napalm/eos/eos.py
Original file line number Diff line number Diff line change
Expand Up @@ -1687,7 +1687,7 @@ def traceroute(
commands = []

if vrf:
commands.append("routing-context vrf {vrf}".format(vrf=vrf))
commands.append("cli vrf {vrf}".format(vrf=vrf))

if source:
source_opt = "-s {source}".format(source=source)
Expand Down Expand Up @@ -2193,7 +2193,7 @@ def ping(
commands = []

if vrf:
commands.append("routing-context vrf {vrf}".format(vrf=vrf))
commands.append("cli vrf {vrf}".format(vrf=vrf))

command = "ping {}".format(destination)
command += " timeout {}".format(timeout)
Expand Down
Loading