Access Server Configuration
I’m not going to go into great detail here about what an Access Server is, just how to configure one. I recently purchased a Cisco 2509-RJ and for the life of me could not get a connection through it to another device. I google’d for almost an hour before I finally came upon the answer.
With respect to the command “ip host SW1 2001 10.1.1.1”, it’s important to note that the last digit for the port parameter (2001 in this case) refers to the line number the device is connected to. In the case above, the telnet connection will be made from port 2001, to line number 1.
One would figure that would be documented better than it actually is.
Example configuration:
AS1#show run
Building configuration…00:22:01: %SYS-5-CONFIG_I: Configured from console by console
Current configuration : 635 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname AS1
!
enable secret 5 <OMITTED>!
ip subnet-zero
no ip domain-lookup
ip host SW1 2001 10.1.1.1
!
!
!
!
interface Loopback0
ip address 10.1.1.1 255.255.255.0
!
interface Ethernet0
no ip address
shutdown
!
interface Serial0
no ip address
shutdown
!
no ip http server
ip classless
!
line con 0
logging synchronous
line 1 8
modem InOut
no exec
transport input all
line aux 0
line vty 0 4
password password
login
!
end