|
Question : Cisco 2801
|
|
I have a brand new out of the box 2800 series router. I need some help building the frame-relay config. I have 7 remote sites all with point-to-point T1's. Now, I've worked with other routers before and the config is pretty stright forward but with this router I do not have "interface serial" command. I have no options to setup any serial interfaces.
I think maybe I don't know how to configure frame relay on this router. Here is my config, version info and what options I have under the interface command. If anyone can help with a sample config or point me in the right directoin that would be great. Perhaps I need a different ios?
================================================================= DataCenter(config)#interface ? sync Async interface VI Bridge-Group Virtual Interface DMA-Ix CDMA Ix interface Tunnel CTunnel interface ialer Dialer interface astEthernet FastEthernet IEEE 802.3 roup-Async Async Group interface ex Lex interface oopback Loopback interface FR Multilink Frame Relay bundle interface ultilink Multilink-group interface ull Null interface unnel Tunnel interface if PGM Multicast Host interface irtual-PPP Virtual PPP interface irtual-Template Virtual Template interface irtual-TokenRing Virtual TokenRing ange interface range command
========================================================================= Using 1141 out of 196600 bytes ! version 12.4 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname BSTDataCenter ! boot-start-marker boot-end-marker ! enable secret 5 $1$cWXt$S4QEYvA1veKQKeJlc3cHC. enable password cisco ! no aaa new-model ! resource policy ! no network-clock-participate wic 1 no network-clock-participate wic 2 mmi polling-interval 60 no mmi auto-configure no mmi pvc mmi snmp-timeout 180 ip subnet-zero ip cef ! ! no ip dhcp use vrf connected ! ! frame-relay switching ! ! ! controller T1 0/1/0 framing esf linecode b8zs description TESTING 1 ! controller T1 0/1/1 framing esf linecode b8zs ! controller T1 0/2/0 framing esf linecode b8zs ! controller T1 0/2/1 framing esf linecode b8zs ! ! interface Tunnel1 no ip address ! interface FastEthernet0/0 ip address 10.5.0.252 255.255.255.0 speed auto half-duplex no mop enabled ! interface FastEthernet0/1 no ip address shutdown duplex auto speed auto ! ip classless ip route 0.0.0.0 0.0.0.0 10.5.0.1 ! ip http server ! disable-eadi ! control-plane ! ! line con 0 line aux 0 line vty 0 4 password cisco login ! end
================================================================================ Cisco IOS Software, 2801 Software (C2801-IPBASE-M), Version 12.4(1a), RELEASE SOFTWARE (fc2) Technical Support: http://www.cisco.com/techsupport Copyright (c) 1986-2005 by Cisco Systems, Inc. Compiled Fri 27-May-05 22:48 by hqluong
ROM: System Bootstrap, Version 12.3(8r)T8, RELEASE SOFTWARE (fc1)
ROUTERDataCenter uptime is 18 hours, 6 minutes System returned to ROM by reload at 01:52:15 UTC Sun Dec 4 2005 System image file is "flash:c2801-ipbase-mz.124-1a.bin"
Cisco 2801 (revision 5.0) with 114688K/16384K bytes of memory. Processor board ID FTX0940Y0RA 2 FastEthernet interfaces 4 Channelized T1/PRI ports DRAM configuration is 64 bits wide with parity disabled. 191K bytes of NVRAM. 62720K bytes of ATA CompactFlash (Read/Write)
Configuration register is 0x2102 =============================================================================
|
Answer : Cisco 2801
|
|
Continuing with what rage419 stated above: controller T1 0/1/0 channel-group 1 timeslots 1-24
That command will then automagically create a new serial interface: interface serial 0/1/0:1 <== corresponds to controller 0/1/0: channel-group 1 encap frame-relay
Now you can go ahead and create all the sub-interfaces you need
interface serial 0/1/0:1.1 point-to-point ip address z.b.c.d 255.255.255.252 frame-relay interface-dlci 16
interface serial 0/1/0:1.2 point-to-point ip address z.b.c.f 255.255.255.252 frame-relay interface-dlci 17
|
|
|
|