diff --git a/napalm/eos/eos.py b/napalm/eos/eos.py index f31f2ad44..76f95f551 100644 --- a/napalm/eos/eos.py +++ b/napalm/eos/eos.py @@ -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) @@ -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)