Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Operation modes of telnet in cisco routers 1

Status
Not open for further replies.

steven890

Programmer
Nov 20, 2008
7
GR
I am facing difficulties in defining the operation modes of telnet in cisco routers.
Could you please help me?
 
I'm not sure what your asking!!!!

You can telnet into your sytem from the inside and outside.

You can setup levels of security for example setting up a login local using usernames with a specific priviledge levels for access...

It's safer to use SSH to login if that is a problem....

Is this what you were looking for?


[americanflag] SPC NVARNG
Tek-TIP Member 19,650
 
what i am looking for is which are the operation modes when we do telnet in cisco routers...
 
The commands?

router>en
router#conf t
router(config)#line vty 0 4
router(config-line)#password bla
router(config-line)#login
router(config-line)#end
router#wr

NOT SAFE!!! All usernames and passwords are sent over in clear text---someone sniffing the line can EASILY extract passwords!

router(config)#ip domain name local
router(config)#crypto key gen rsa
(pick 1024 for ssh ver1, 2048 for ssh ver 2, 1.99 according to Cisco)
router(config)#username bla priv 15 secret blabla
router(config)#enable secret blablabla
router(config)#line vty 0 4
router(config-line)#trans in ssh
router(config-line)#end
router#wr

This is for ssh. You can use Windows command line, any router that has k9 in the IOS code, or PuTTy (what I use).
The safest way, instead of ssh, is to make a remote access vpn, and that can be done if your router has k9 in the IOS image, which is needed for ssh anyway.

NOW---telnet is tcp port 23, used to remote console into devices, or to test connectivity on all 7 layers of the OSI model, particularly layer 4 (telnetting to a specific port indicates that port being open).

Like Forest Gump, that's all I have to say about that.

Burt
 
what i am asking is in general(and theoritical) which are the operation modes when we telnet in cisco routers
 
Telnet is another way to stay away from a broom closet. still get the same effect sitting at the console .. ..
 
I am going to guess that he/she got what they wanted, but was reiterating in a final effort to be understood...maybe???

Burt
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top