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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Newbie to routers.

Status
Not open for further replies.

jbmathew

IS-IT--Management
Jun 8, 2005
1
US
router c3640 connected to a laptop and configuring it through telneting.
Saw the boot process. Enabled secret password.
<Router> R1 (Config-line)# pass cisco
R1 (Config-line)# login int s0
Enter TEXT Message. End with the character 'O'
login int s0
Translating "int"... domain server (255.255.255.255) 255.255.255.255
Unable to set login string for int.
R1(Config)#
Unable to configure interfaces, what am i doing wrong here ?
 
I think you are trying to make your router accept a remote login via telnet from a laptop. You are currently connrected to the router console.

So, set an enable or secret password as you have, then do:

conf t
line vty 0 4
password cisco
login
end

The
"Translating "int"... domain server (255.255.255.255) 255.255.255.255
Unable to set login string for int."
that you got was because the router interpreted your input as the name of a device on the network that you wanted to search for.

To stop that, do:
conf t
no ip domain-lookup
end

EB
 
Also, do this for less confusion...
router(config)#line con 0
router(config-line)#logg sync

Burt
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top