VRF and Telnet or SSH
These commands is totally not intuitive but it is very important if you have one or more VRF’s and must telnet or SSH across it. You can find much more information here:
Cisco does change their paths so just search for “Cisco Telnet VRF”.
Here is a discussion at the CLN.
The command for telnet looks like this
telnet 10.0.0.1 /vrf MGMT Where: 10.0.0.1 is the IP you are connecting to. /vrf is a switch that is required for using telnet across VRF's MGMT is the VRF you are wanting to use for the telnet session. The format is Switch# telnet <ip-address>/vrf vrf-name For SSH it would be ssh -l user -vrf MGMT 10.0.0.1 In the format of: ssh -l <username> -vrf <vrf-name> <ip-host> Information on the SSH part here.