|
|
|
| Does anyone have an example about 2509 configuration? I had a hard time to fine out from cisco web site actually.
how can I configure it?
Thanks | |
| strikeattack 2001-11-15, 5:55 pm |
| Woah. Thats an open-ended question if I ever heard one. Because the ways to configure a router are nearly endless, you might have a better response if you asked specific questions related to Cisco commands, configuration, or the router in question. | |
|
| oops!! my bad..
I was actually wondering the command regarding 2509 to other Routers.
how can I configurate terminal line?
I wanna console into the 2509, and have all the console connection to any Routers that I have connected with Octal cable with RJ-45 connector.
again, I appreciate it. | |
|
|
| Aries 2001-11-15, 11:02 pm |
| this is actually what I have done!
Router 2509:
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#line tty 1 8
Router(config-line)#exec-timeout 0 0
Router(config-line)#transport input all
Router(config-line)#^Z
Router#sh sess
% No connections open
Router 2502:
Router(config)#line console 0
Router(config-line)#exec-timeout 0 0
Did I also do anything wrong?
Thanks for helping me. | |
| darthfeces 2001-11-16, 5:11 pm |
| version 11.3
service timestamps debug uptime
service timestamps log uptime
service password-encryption
service udp-small-servers
service tcp-small-servers
!
stname term_serv
!
no ip domain-lookup
ip host R1 2001 10.1.1.1
ip host R2 2002 10.1.1.1
ip host R3 2003 10.1.1.1
ip host R4 2004 10.1.1.1
ip host cat 2006 10.1.1.1
ip host pwr 2008 10.1.1.1
!
interface Loopback0
ip address 10.1.1.1 255.255.255.0
!
interface Ethernet0
ip address x.x.x.x 255.255.255.x
no ip directed-broadcast
no ip proxy-arp
no cdp enable
!
interface Serial0
no ip address
shutdown
!
interface Serial1
no ip address
shutdown
!
no ip classless
!
line con 0
line 1 8
no exec
transport input all
line aux 0
line vty 0 3
password temp
login
end | |
|
|
| darthfeces 2001-11-16, 5:20 pm |
| aus-comm-server#show running-config
!
version 12.0
service timestamps debug datetime msec localtime show-timezone
service timestamps log datetime msec localtime show-timezone
service password-encryption
!
hostname aus-comm-server
!
enable secret <deleted>
!
username cisco password <deleted>
!
ip subnet-zero
ip domain-list cisco.com
no ip domain-lookup
ip host 3600-3 2014 172.21.1.1
! -- The host 3600-3 is connected to port 14 of the comm server.
! -- The ip address should be that of an interface on the comm server.
ip host 3600-2 2013 172.21.1.1
ip host 5200-1 2010 172.21.1.1
ip host 2600-1 2008 172.21.1.1
ip host 2509-1 2007 172.21.1.1
ip host 4500-1 2015 172.21.1.1
ip host 3600-1 2012 172.21.1.1
ip host 2511-2 2002 172.21.1.1
ip host 2511-rj 2003 172.21.1.1
ip host 2511-1 2001 172.21.1.1
ip host 5200-2 2011 172.21.1.1
ip host 2520-1 2004 172.21.1.1
ip host 2520-2 2005 172.21.1.1
ip host 2600-2 2009 172.21.1.1
ip host 2513-1 2006 172.21.1.1
ip host pix-1 2016 172.21.1.1
!
!
process-max-time 200
!
interface Loopback1
ip address 172.21.1.1 255.0.0.0
! -- This address was used in the ip host commands above.
! -- Loopback interfaces are preferred since they are virtual and are always
! -- available.
no ip directed-broadcast
!
interface Ethernet0
ip address 171.55.31.5 255.255.255.192
! -- Use a public ip address to ensure that there is connectivity.
No ip directed-broadcast
no ip mroute-cache
!
interface Serial0
no ip address
no ip directed-broadcast
no ip mroute-cache
shutdown
!
ip default-gateway 171.55.31.1
! -- default gateway when routing is disabled(for example, the router is in
! -- boot ROM mode).
ip classless
ip route 0.0.0.0 0.0.0.0 171.55.31.1
! -- set default route for external network
no ip http server
!
line con 0
transport input all
line 1 16
session-timeout 20
! -- session times out after 20 minutes of inactivity.
No exec
! -- unwanted signals from the attached device will not launch an EXEC session
! -- prevents the line from being unavailable due to a rogue EXEC process
exec-timeout 0 0
! -- disables exec timeout
transport input all
! -- allow all protocols to use the line.
! -- lines 1 16 must be configured with at least transport input telnet.
line aux 0
!-- auxiliary port can provide dial backup to the network.
!-- Note: this configuration does not implement modem on aux port
modem InOut
!-- allow auxiliary port to support dialout and dialin connections.
transport preferred telnet
transport input all
speed 38400
flowcontrol hardware
line vty 0 4
exec-timeout 60 0
password <deleted>
login
!
end |
|
|
|