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

Cisco AS5200

Status
Not open for further replies.

namesrhard2pick

Technical User
Nov 26, 2007
312
US
Hello,

Is it possible to configure a Cisco AS5200 access server as a frame relay switch for my CCNA test lab? It has two serial interfaces which I think is all I need. I have the DTE/DCE cables and two 2500 routers. I came across one of these at work sitting on a shelf.

Thanks
 
Wow, that's old...I would say yes. Need a config?

!
version 11.3
service telnet-zeroidle
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname Frame_Switch
!
enable password xxxxxxxxxx
!
frame-relay switching
!
!
interface Ethernet0
ip address 172.16.0.2 255.255.0.0
!
interface Serial0
no ip address
encapsulation frame-relay
no ip mroute-cache
clockrate 4000000
frame-relay lmi-type ansi
frame-relay intf-type dce
frame-relay route 101 interface Serial1 102
!
interface Serial1
no ip address
encapsulation frame-relay
clockrate 4000000
frame-relay intf-type dce
frame-relay route 102 interface Serial0 101
!
interface BRI0
no ip address
shutdown
!
ip classless
!
!
line con 0
password xxxxxxxxx
logging synchronous
login
line aux 0
line vty 0 4
password xxxxxxxxx
login
!
end

The router that plugs into s0 on the frame switch is dlci 101, and s1 is dlci 102.

Burt
 
Cool---reason I ask is because I know someone with a rack with an HP9000, and one of these Cisco terminal servers---I was going to get it, as they would let it go cheap (they don't know what they have!!!).

Burt
 
It worked my friend. My config is a little different than yours and instead of using two routes I used 1 2512 with two serial interfaces. The interfaces are happy and I'll eventually go to my original 3 router setup. I however wanted to give you feedback before the holiday. Have a Merry Christmas. Below is the show frame route

FR#sho fram rou
Input Intf Input Dlci Output Intf Output Dlci Status
Serial0 100 Serial1 200 active
Serial1 200 Serial0 100 active
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top