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

trouble logging in cisco 1605r router

Status
Not open for further replies.

angktwap

Technical User
Apr 21, 2002
154
SG
Hi to all,
I tried to on to the my 1605r router but I am having trouble logging in.

This is the log on screen I get:

DREAMSCAPE INTERNET
=======================================
Any unauthorized, or attempted unauthorized
access to this server will result in severe
criminal/civil charges
=======================================

User Access Verification

Password:



Is the log on screen normal?
Did someone 'played' with router before or I got the wrong password??

Please respond, as we need to do some configuration to it ASAP. Thanks.


Regards,
angktwap
 
I used a com port from a laptop and connect to the console.
using the these settings:

9600 baud rate
No parity
8 data bits
1 stop bit
No flow control


 
How are you trying to log in to the router? Through the console port? telnet? remote access(modem)?

Burke
 
Looks like your router belonged to Dreamscape Internet at some point.

Search for "password recovery".

It's easy when you know how.

Chris.
************************
Chris Andrew, CCNA
chris@iproute.co.uk
************************
 
How is Dreamscape internet related to Cisco??
 
It's not! It just means that Dreamscape Internet bought a router from Cisco and put a logon banner on warning unauthorised users that they shouldn't attempt to log on to that router.

We do exactly the same thing with all of our routers.

You need to do a password recovery and then wipe the config.

Chris.
************************
Chris Andrew, CCNA
chris@iproute.co.uk
************************
 
Thanks for all the help...Sorry for my ignorance.
Never seen a log on of a router....



angktwap
 
collossus#conf t
Enter configuration commands, one per line. End
collossus(config)#banner motd #
Enter TEXT message. End with the character '#'.
DREAMSCAPE INTERNET
=======================================
Any unauthorized, or attempted unauthorized
access to this server will result in severe
criminal/civil charges
=======================================

Chris.
************************
Chris Andrew, CCNA
chris@iproute.co.uk
************************
 
Just to check if there is any tutorial on how to set up a router for routing.
Suppose I have xxx.xxx.xxx.96 to xxx.xxx.xxx.111 subnet mask of 255.255.255.240. What is all the interface eth0, etc all about.


 
Interface eth0 is your ethernet interface, to which you need to assign an IP address.

router#conf t
router(config)#int eth0
router(config-if)#ip address xxx.xxx.xxx.97 255.255.255.240


Chris.
************************
Chris Andrew, CCNA
chris@iproute.co.uk
************************
 
one interface is to the internet and one is to the LAN??
Which one to the Lan and which one to the internet?? I would like to configure the 1605r router to a SDSL line. Is it configure as same as a ISDN line??

 
What interfaces does your router have?

Chris.
************************
Chris Andrew, CCNA
chris@iproute.co.uk
************************
 
I did a password recovery.....but failed.

I tried to do this(according the to Doc provided by Cisco):
....
....
router>configure terminal

router>(config)#enable password 1234

router>(config)#enable secret 4321

router>write memory
....
....

After everything, I exited and log on to the router again. the password does not take effect why is it so??


regards
 
Is it this??

console password =
line con 0
password xxxx

telnet password =
line vty 0 4
password xxxx
 
What are you trying to do? Set passwords or find out what ports your router has?

Chris.
************************
Chris Andrew, CCNA
chris@iproute.co.uk
************************
 
sorry pls ignore previous message.

I have ehternet0 and ethernet1. If I were to connect a PIX firewall to it, can I config the way as shown below??

I am given address range of X.X.X.96 to X.X.X.111

interface Ethernet0
ip address X.X.X.96 255.255.255.192
!
interface Ethernet1
ip address X.X.X.97 255.255.255.192
!
ip classless
ip route 0.0.0.0 0.0.0.0 x.x.x.96
ip route x.x.x.96 255.255.255.240 x.x.x.98
ip http server


I saw some sample config has acceslist.
What are they for??
access-list 3 permit XX.XX.9.110
access-list 3 permit XX.XX.34.39
access-list 3 deny XX.172.192.14
access-list 3 deny XX.212.171.241
access-list 3 permit XX.130.0.0 0.0.255.255
access-list 3 permit XX.50.0.0 0.0.255.255
access-list 3 permit XX.0.0.0 0.255.255.255
access-list 3 permit XX.0.0.0 0.255.255.255
access-list 3 permit XX.49.0.0 0.0.255.255
 
No, you don't want to put IP addresses from the same range on different interfaces. If you are using a PIX you should have one IP address from your range (the first one for example) on the ethernet interface of your router, say ethernet0. Connect this interface via a cross over cable into the PIX outside interface and give that interface on the PIX the next IP address from your range. The inside interface of the PIX would then have the private IP range for your LAN.

As far as the access lists go, they are used on routers to permit or deny traffic based on IP address and/or port number.

Chris.
************************
Chris Andrew, CCNA
chris@iproute.co.uk
************************
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top