I have a Netvanta 3200 T1 router. Our IT department noticed that the public telnet was turned on. They want me to turn it off.
I can telnet into the device. It is running an older OS version, 17.04.02.00. What are the commands to disable telnet and enable SSH?
Make sure you have a valid username/password pair on the device.
username "johndoe" password "itsasecret"
Then:
line telnet 0 4
shutdown
line ssh 0 4
no shutdown
You can and probably should apply an access-list to limit SSH to your management subnet else the Internet will try to brute-force your SSH login. They probably won't succeed with an uncommon username and a good password but it can gobble CPU.
ip access-list standard admin-access
permit 192.168.200.0 0.0.0.255
line ssh 0 4
no shutdown
ip access-class admin-access in