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

frame-relay

Status
Not open for further replies.

splat78423

IS-IT--Management
Oct 17, 2005
67
US
I have aquired a used cisco 1700 router. I reset the unknown username, passwords, and the registers and can copy run start etc. etc..But when I try to setup frame-relay encapsulation I get an error


^

router(config-if)#encapsulation frame-relay ietf
^

it gives me an error after that command. am I doing anything wrong or does this routers IOS maybe not support frame-relay for some reason?
 
Can you paste a copy of output from 'show ver' and 'show ip int brief'
 
I dont have the router with me here at the office....... I will be happy to post that as soon as I get home.
 


I have been the network administrator of a high school for the past six months and have found this router sitting around my wire room, completely disconnected, doing nothing all this time. I asked the principle about it and she said that she doesnt know where it came from and that I am welcome to keep it if I'd like. I think it may have been from one of our old ISP's or something, I really dont know. Anyway, I reset the password and the register and have it now in a home lab enviroment for experiments and practice purposes.

Below I have listed the output from the requested commands you asked me to run. I just want to practice frame-relay configs and the like on it but am getting an unexpected error as I had stated in my first post.

Router#show version
Cisco Internetwork Operating System Software
IOS (tm) C1700 Software (C1700-Y-M), Version 12.1(3), RELEASE SOFTWARE (fc1)
Copyright (c) 1986-2000 by cisco Systems, Inc.
Image text-base: 0x80008888, data-base: 0x801CD90

ROM: System Bootstrap, Version 12.0(3)T, RELEASE SOFTWARE (fc1)

Router uptime is 0 minutes
System returned to ROM by power-on
System image file is "flash:c1700-y-mz.121-3"

cisco 1720 (MPC860) processor (revision 0x101) with 12288K/4096K bytes of memory
.
Processor board ID JAD04021Q48 (670221699), with hardware revision 0000
M860 processor: part number 0, mask 32
Bridging software.
X.25 software, Version 3.0.0.
1 FastEthernet/IEEE 802.3 interface(s)
1 Serial(sync/async) network interface(s)
32K bytes of non-volatile configuration memory.
4096K bytes of processor board System flash (Read/Write)

Configuration register is 0x2102

Router#show ip int brief
Interface IP-Address OK? Method Status Prot
ocol
FastEthernet0 unassigned YES NVRAM administratively down down

Serial0 unassigned YES NVRAM administratively down down

Router#
 
According to Cisco, that version does support frame relay encapsulation. Are you sure you were trying that command on the serial interface and not the Fast Ethernet interface?
 
I was playing with the frame-relay commands (which I am obviously rusty at) off the top of my head very late last night. I think what I did was indeed an input error on my part. I wasnt trying to ecapsulate the ethernet interface with frame-relay though (that would have been an even funnier error though). I think I was trying to configure frame-relay in global config mode like an idiot. I should have cracked a book. Do you happen to have a link to the proper online documentation that can tell me what IOS versions support which WAN protocols?
 
Take a look at the example below. Good guide for setting it up. Some settings on the serial may vary depending on your ISP requirements.


hostname Cisco1720
!
ip subnet-zero
no ip domain-lookup
!
interface FastEthernet0
description connected to Cisco1548
ip address 192.168.3.1 255.255.255.0
ip nat inside
keepalive 10
!
interface Serial0
service-module t1 clock source line
service-module t1 data-coding normal
service-module t1 remote-loopback full
service-module t1 framing esf
service-module t1 linecode b8zs
service-module t1 lbo none
service-module t1 remote-alarm-enable
no ip address
encapsulation frame-relay
frame-relay lmi-type q933a
!
interface Serial 0.1 point-to-point
no shutdown
description connected to Internet
ip address 64.110.120.10 255.255.255.252
ip nat outside
frame-relay interface-dlci 123
!
!
access-list 1 permit 192.168.3.0 0.0.0.255
!
ip nat inside source list 1 interface Serial 0.1 overload
!
router rip
version 2
network 192.168.3.0
passive-interface Serial 0.1
no auto-summary
!
ip classless
!
ip route 0.0.0.0 0.0.0.0 Serial 0.1
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top