Hello,
I am just setting a home lab for ccna practice. I need to access the lab remotely, how should I do it?
Right now
Cable Modem/Router(with wireless)>Hub>Cisco Switch or router> Cisco Lab
I need to access Cisco lab from outside, is there any way?
GNS3 or any other simulator is not an option. I am getting one IP address from my ISP
ssh -L 2301:192.168.0.101:23 \
-L 2302:192.168.0.102:23 \
-L 2303:192.168.0.103:23 \
-L 2304:192.168.0.104:23 \
-L 2305:192.168.0.105:23 \
-L 2306:192.168.0.106:23 \
-L 2307:192.168.0.107:23 \
-L 2308:192.168.0.108:23 user@host
Once you're logged into the host via SSH, you will be able to connect to the routers by using separate windows and opening telnet sessions to 127.0.0.1 (localhost) on ports 2301-2308.
If you're using a Windows client, replace the ssh with putty and put everything on one line like this:
putty -L 2301:192.168.0.101:23 -L 2302:192.168.0.102:23 -L 2303:192.168.0.103:23 -L 2304:192.168.0.104:23 -L 2305:192.168.0.105:23 -L 2306:192.168.0.106:23 -L 2307:192.168.0.107:23 -L 2308:192.168.0.108:23 user@host
Jody