Thursday, July 26, 2012

Configuring Cisco Access Server

I'm exploring to setup Cisco Access Server.



                   Choosing An Access Server - Part II

Step 1 - Create a loopback interface and assign an IP Address.
!
int lo0
    ip add 192.168.10.1 255.255.255.0
!

Step 2 - Allow Telnet as a transport across asynchronous lines 1 to 16.
!
line 1 16
   exec-timeout 0 0
   no exec
   transport input telnet
!

Step 3 - Creating a host table that maps a Router's Host Name to the Asynchronous Line to which it is connected to the terminal server
!
ip host R1 2001 192.168.10.1
ip host R2 2002 192.168.10.1
ip host R3 2003 192.168.10.1
ip host R4 2004 192.168.10.1
ip host R5 2005 192.168.10.1
ip host Cat1 2006 192.168.10.1
ip host Cat2 2007 192.168.10.1
ip host Cat3 2008 192.168.10.1
ip host Cat4 2009 192.168.10.1
!

Step 4 - Verification Commands
# show sessions   - Displays all open sessions
# clear line line # - Clear the desired asynchronous line(1 to 16, where 1 = 2001, 2 = 2002 and so on)
# Ctrl-Shift-6, x   - Escapes the current session and returns to the terminal server
# disconnect connection # - Disconnects the desired the connection


No comments:

Post a Comment