
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2017 09:14 AM - edited 03-08-2019 10:10 AM
I have SSH enabled on switches and routers.
If I am already in a router how can I login to a switch from my router.?
Two ways I would like to know.
1. Login from a router to a switch.
2.Login from a switch to switch.
each have SSH
Please give an example.
Solved! Go to Solution.
- Labels:
-
Other Switching
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2017 09:28 AM
Use can use the same method for both the switch and the router:
ssh 10.10.10.1
10.10.10.1 is the IP address of the device you want to connect to.
If the destination device is not configured with the same user name as the source than you can add the use name to the string. In this case the destination device is configured with username "test"
You also need to provide the password.
ssh -l test 10.10.10.1
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2017 09:28 AM
Use can use the same method for both the switch and the router:
ssh 10.10.10.1
10.10.10.1 is the IP address of the device you want to connect to.
If the destination device is not configured with the same user name as the source than you can add the use name to the string. In this case the destination device is configured with username "test"
You also need to provide the password.
ssh -l test 10.10.10.1
HTH
