SlideShare une entreprise Scribd logo
1  sur  7
Télécharger pour lire hors ligne
GRUPO 3
Jorge Luis Chalen
Ronald Colcha
Steven Galarza
Luís Lucio
Kevin Paz
Jorge Rendon
Sergio Sabando

TROUBLESHOOTING FRAME RELAY
Router 1
Errores:
1. Se encuentra mal configurado el mapeo Frame-relay map ip 172.18.221.2 678 broadcast
para R1.
2. Falta agregar Frame-relay propio
3. La interfaz Serial0/2/1(DTE) de R1 se encuentra con clock-rate configurado.
Soluciones:
1. Se realiza la corrección del error mediante el comando:
#Frame-relay map ip 172.18.221.2 182 broadcast
2. Se debe agregar el mapeo Frame-relay:
#Frame-relay map ip 172.18.221.2 182
3. Se debe eliminar el clock-rate de la interfaz DTE usando el comando:
#no clock-rate 125000
RUNNING-CONFIG:
Router>enable
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R1
R1(config)#enable secret class
R1(config)#no ip domain lookup
R1(config)#interface Loopback0
R1(config-if)#ip address 172.18.11.254 255.255.255.0
R1(config-if)#interface FastEthernet0/0
R1(config-if)#no ip address
R1(config-if)#shutdown
R1(config-if)#duplex auto
R1(config-if)#speed auto
R1(config-if)#interface FastEthernet0/1
R1(config-if)#no ip address
R1(config-if)#shutdown
R1(config-if)#duplex auto
R1(config-if)#speed auto
R1(config-if)#interface Serial0/2/1
R1(config-if)#no ip address
R1(config-if)#shutdown
R1(config-if)#no fair-queue
R1(config-if)#clockrate 125000
R1(config-if)#interface Serial0/2/0
R1(config-if)#shutdown
R1(config-if)#ip address 172.18.221.1 255.255.255.252
R1(config-if)#encapsulation frame-relay
R1(config-if)#no frame-relay inverse-arp
R1(config-if)#frame-relay map ip 172.18.221.2 182 broadcast
R1(config-if)#frame-relay map ip 172.18.221.2 182
R1(config-if)#no shutdown
R1(config-if)#router eigrp 1
R1(config-router)#network 172.18.221.0
R1(config-router)#network 172.18.11.0
R1(config-router)#no auto-summary
R1(config-router)#line con 0
R1(config-line)#password cisco
R1(config-line)#logging synchronous
R1(config-line)#line vty 0 4
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#end
R1#
*Nov 19 18:07:23.647: %LINEPROTO-5-UPDOWN: Line protocol on Interface
Loopback0, changed state to up
R1#
*Nov 19 18:07:24.923: %SYS-5-CONFIG_I: Configured from console by console
R1#
*Nov 19 18:07:25.159: %LINK-3-UPDOWN: Interface Serial0/2/0, changed state to up
R1#
R1#
R1#
*Nov 19 18:07:28.523: %LINK-3-UPDOWN: Interface Serial0/2/0, changed state to down
R1#ping 172.18.221.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.18.221.2, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)
R1#show frame-relay map
Serial0/2/0 (down): ip 172.18.221.2 dlci 182(0xB6,0x2C60), static,
CISCO, status deleted
R1#
*Nov 19 18:08:09.331: %LINK-3-UPDOWN: Interface Serial0/2/0, changed state to up
R1#
R1#
R1#
R1#show frame-relay map
Serial0/2/0 (up): ip 172.18.221.2 dlci 182(0xB6,0x2C60), static,
CISCO, status deleted
R1#
*Nov 19 18:08:20.331: %LINEPROTO-5-UPDOWN: Line protocol on Interface
Serial0/2/0, changed state to up
R1#
*Nov 19 18:09:14.799: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 1: Neighbor 172.18.221.2
(Serial0/2/0) is up: new adjacency
R1#show frame-relay map
ping 172.18.221.2
show frame-relay map
Serial0/2/0 (up): ip 172.18.221.2 dlci 182(0xB6,0x2C60), static,
CISCO, status defined, active
R1#show frame-relay map
ping 172.18.221.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.18.221.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 28/29/32 ms
R1#
R1#
*Nov 19 18:12:19.311: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 1: Neighbor 172.18.221.2
(Serial0/2/0) is down: retry limit exceeded
R1#

Router 2
Errores:
1. Se configuro clock-rate en una interfaz DTE
2. Se realizó mal la configuración en el Frame-relay map
3. Se configuro el LMI como ANSI, mientras el resto de routers están como cisco
4. No se configuro una contraseña en línea virtual
Soluciones:
1. Se debe eliminar el clock-rate de la interfaz DTE usando el comando:
#no clock-rate 125000
1. Se debe cambiar la configuración del mapeo Frame-relay:
#frame-relay map ip 172.18.221.1 181 broadcast
2. Se debe cambiar la configuración del LMI a cisco:
#frame-relay lmi-type cisco
3. Se debe establecer una contraseña en línea virtual:
#line vty 0 4
#password cisco
#login

RUNNING-CONFIG:
Router>enable
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R2
R2(config)#enable secret class
R2(config)#no ip domain lookup
R2(config)#interface Loopback0
R2(config-if)#ip address 172.18.111.254 255.255.255.0
R2(config-if)#interface FastEthernet0/0
R2(config-if)#no ip address
R2(config-if)#shutdown
R2(config-if)#duplex auto
R2(config-if)#speed auto
R2(config-if)#interface FastEthernet0/1
R2(config-if)#no ip address
R2(config-if)#shutdown
R2(config-if)#duplex auto
R2(config-if)#speed auto
R2(config-if)#interface Serial0/2/0
R2(config-if)#no ip address
R2(config-if)#shutdown
R2(config-if)#no fair-queue
R2(config-if)#interface Serial0/2/1
R2(config-if)#shutdown
R2(config-if)#ip address 172.18.221.2 255.255.255.252
R2(config-if)#encapsulation frame-relay
R2(config-if)#no frame-relay inverse-arp
R2(config-if)#frame-relay map ip 172.18.221.1 181 broadcast
R2(config-if)#frame-relay map ip 172.18.221.2 181
R2(config-if)#no shutdown
R2(config-if)#router eigrp 1
R2(config-router)#network 172.18.221.0
R2(config-router)#network 172.18.111.0
R2(config-router)#no auto-summary
R2(config-router)#line con 0
R2(config-line)#password cisco
R2(config-line)#logging synchronous
R2(config-line)#line vty 0 4
R2(config-line)#password cisco
R2(config-line)#login
R2(config-line)#end
*Nov 19 17:45:51.051: %LINEPROTO-5-UPDOWN: Line protocol on Interface
Loopback0,
changed state to up
R2(config-line)#end
R2#
*Nov 19 17:45:52.343: %LINK-3-UPDOWN: Interface Serial0/2/1, changed state to up
R2#
*Nov 19 17:45:52.815: %SYS-5-CONFIG_I: Configured from console by console
R2#
R2#pi
*Nov 19 17:45:55.767: %LINK-3-UPDOWN: Interface Serial0/2/1, changed state to do
wn
R2#ping 172.18.221.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.18.221.1, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)
R2#sh fr
R2#sh frame-relay map
Serial0/2/1 (down): ip 172.18.221.1 dlci 181(0xB5,0x2C50), static,
broadcast,
CISCO, status deleted
Serial0/2/1 (down): ip 172.18.221.2 dlci 181(0xB5,0x2C50), static,
CISCO, status deleted
R2#
*Nov 19 17:46:36.591: %LINK-3-UPDOWN: Interface Serial0/2/1, changed state to up
R2#show ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route
Gateway of last resort is not set
172.18.0.0/24 is subnetted, 1 subnets
C
172.18.111.0 is directly connected, Loopback0
R2#
*Nov 19 17:46:47.591: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/2/
1, changed state to up
R2#show f
R2#show fra
R2#show frame-relay pvc
PVC Statistics for interface Serial0/2/1 (Frame Relay DTE)
Active Inactive
Local
1
0
Switched
0
0
Unused
0
0

Deleted
Static
0
0
0
0
0
0

DLCI = 181, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE =
Serial0/2/1
input pkts 0
output pkts 0
in bytes 0
out bytes 0
dropped pkts 0
in pkts dropped 0
out pkts dropped 0
out bytes dropped 0
in FECN pkts 0
in BECN pkts 0
out FECN pkts 0
out BECN pkts 0
in DE pkts 0
out DE pkts 0
out bcast pkts 0
out bcast bytes 0
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
pvc create time 00:01:13, last time pvc status changed 00:00:07
R2#sh frame-relay map
Serial0/2/1 (up): ip 172.18.221.1 dlci 181(0xB5,0x2C50), static,
broadcast,
CISCO, status defined, active
Serial0/2/1 (up): ip 172.18.221.2 dlci 181(0xB5,0x2C50), static,
CISCO, status defined, active
R2#ping 172.18.221.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.18.221.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 28/29/32 ms
R2#

FR- Switch
Errores:
1. Falta agregar la ruta Frame-relay desde R2 con DLCI 182 a R1 con DLCI 181
Soluciones:
1. Se debe agregar la ruta Frame-relay desde R2 con DLCI 182 hacia R1 con DLCOI 181
usando el comando:
#Frame-relay route 182 interface serial 0/2/1 181
RUNNING-CONFIG:
FR-Switch#show running-config
Building configuration...
Current configuration : 1076 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname FR-Switch
!
boot-start-marker
boot-end-marker
!
enable secret 5 $1$0gHN$ddajjkNEa9O70zzr/7Tc5/
!
no aaa new-model
!
resource policy
!
ip subnet-zero
!
!
ip cef
--More-!
!
no ip domain lookup
frame-relay switching
!
!
!
!
interface FastEthernet0/0
no ip address
shutdown
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/2/0
no ip address
encapsulation frame-relay
--More-clock rate 125000
frame-relay intf-type dce
frame-relay route 182 interface Serial0/2/1 181
!
interface Serial0/2/1
no ip address
encapsulation frame-relay
clock rate 125000
frame-relay intf-type dce
frame-relay route 181 interface Serial0/2/0 182
!
ip classless
!
ip http server
!
!
control-plane
!
banner motd ^CSOLO PERSONAL AUTORIZADO^C
!
line con 0
password cisco
--More-line aux 0
line vty 0 4
password cisco
login
!
scheduler allocate 20000 1000
!
end
FR-Switch#

login

Contenu connexe

Tendances

Networking Tutorial Goes to Basic PPP Configuration
Networking Tutorial Goes to Basic PPP ConfigurationNetworking Tutorial Goes to Basic PPP Configuration
Networking Tutorial Goes to Basic PPP Configuration3Anetwork com
 
Ssh config note
Ssh config noteSsh config note
Ssh config noteR.k. Thapa
 
4.4.1.2 packet tracer configure ip ac ls to mitigate attacks-instructor
4.4.1.2 packet tracer   configure ip ac ls to mitigate attacks-instructor4.4.1.2 packet tracer   configure ip ac ls to mitigate attacks-instructor
4.4.1.2 packet tracer configure ip ac ls to mitigate attacks-instructorSalem Trabelsi
 
6.5.1.2 packet tracer layer 2 security instructor
6.5.1.2 packet tracer   layer 2 security instructor6.5.1.2 packet tracer   layer 2 security instructor
6.5.1.2 packet tracer layer 2 security instructorSalem Trabelsi
 
Configure Cisco Routers for Syslog, NTP, and SSH Operations
Configure Cisco Routers for Syslog, NTP, and SSH Operations Configure Cisco Routers for Syslog, NTP, and SSH Operations
Configure Cisco Routers for Syslog, NTP, and SSH Operations Kelson Silva
 
managing your network environment
managing your network environmentmanaging your network environment
managing your network environmentscooby_doo
 
Dynamic Routing IGRP
Dynamic Routing IGRPDynamic Routing IGRP
Dynamic Routing IGRPKishore Kumar
 
Lab practice 1 configuring basic routing and switching (with answer)
Lab practice 1   configuring basic routing and switching (with answer) Lab practice 1   configuring basic routing and switching (with answer)
Lab practice 1 configuring basic routing and switching (with answer) Arz Sy
 
Saad baig practical file
Saad baig practical fileSaad baig practical file
Saad baig practical fileSaadBaig33
 
Dynamic routing EIGRP
Dynamic routing EIGRPDynamic routing EIGRP
Dynamic routing EIGRPKishore Kumar
 
5.5.1.2 packet tracer configure ios intrusion prevention system (ips) using...
5.5.1.2 packet tracer   configure ios intrusion prevention system (ips) using...5.5.1.2 packet tracer   configure ios intrusion prevention system (ips) using...
5.5.1.2 packet tracer configure ios intrusion prevention system (ips) using...Salem Trabelsi
 
4.4.1.3 packet tracer configuring a zone-based policy firewall (zpf) instru...
4.4.1.3 packet tracer   configuring a zone-based policy firewall (zpf) instru...4.4.1.3 packet tracer   configuring a zone-based policy firewall (zpf) instru...
4.4.1.3 packet tracer configuring a zone-based policy firewall (zpf) instru...Salem Trabelsi
 
Cisco CCNA IPV6 Static Configuration
Cisco CCNA  IPV6 Static ConfigurationCisco CCNA  IPV6 Static Configuration
Cisco CCNA IPV6 Static ConfigurationHamed Moghaddam
 
Galil ioc7007 catalog
Galil ioc7007 catalogGalil ioc7007 catalog
Galil ioc7007 catalogElectromate
 
Visio-VSCHO001_Design
Visio-VSCHO001_DesignVisio-VSCHO001_Design
Visio-VSCHO001_DesignRick Galvez
 
Cisco commands List for Beginners (CCNA, CCNP)
Cisco commands List for Beginners (CCNA, CCNP)Cisco commands List for Beginners (CCNA, CCNP)
Cisco commands List for Beginners (CCNA, CCNP)DH Da Lat
 

Tendances (20)

Networking Tutorial Goes to Basic PPP Configuration
Networking Tutorial Goes to Basic PPP ConfigurationNetworking Tutorial Goes to Basic PPP Configuration
Networking Tutorial Goes to Basic PPP Configuration
 
Ssh config note
Ssh config noteSsh config note
Ssh config note
 
Lab 3.5.1 basic frame relay
Lab 3.5.1 basic frame relayLab 3.5.1 basic frame relay
Lab 3.5.1 basic frame relay
 
4.4.1.2 packet tracer configure ip ac ls to mitigate attacks-instructor
4.4.1.2 packet tracer   configure ip ac ls to mitigate attacks-instructor4.4.1.2 packet tracer   configure ip ac ls to mitigate attacks-instructor
4.4.1.2 packet tracer configure ip ac ls to mitigate attacks-instructor
 
6.5.1.2 packet tracer layer 2 security instructor
6.5.1.2 packet tracer   layer 2 security instructor6.5.1.2 packet tracer   layer 2 security instructor
6.5.1.2 packet tracer layer 2 security instructor
 
Configure Cisco Routers for Syslog, NTP, and SSH Operations
Configure Cisco Routers for Syslog, NTP, and SSH Operations Configure Cisco Routers for Syslog, NTP, and SSH Operations
Configure Cisco Routers for Syslog, NTP, and SSH Operations
 
managing your network environment
managing your network environmentmanaging your network environment
managing your network environment
 
Dynamic Routing IGRP
Dynamic Routing IGRPDynamic Routing IGRP
Dynamic Routing IGRP
 
Lab practice 1 configuring basic routing and switching (with answer)
Lab practice 1   configuring basic routing and switching (with answer) Lab practice 1   configuring basic routing and switching (with answer)
Lab practice 1 configuring basic routing and switching (with answer)
 
Saad baig practical file
Saad baig practical fileSaad baig practical file
Saad baig practical file
 
Dynamic routing EIGRP
Dynamic routing EIGRPDynamic routing EIGRP
Dynamic routing EIGRP
 
Alcatel vm
Alcatel vmAlcatel vm
Alcatel vm
 
5.5.1.2 packet tracer configure ios intrusion prevention system (ips) using...
5.5.1.2 packet tracer   configure ios intrusion prevention system (ips) using...5.5.1.2 packet tracer   configure ios intrusion prevention system (ips) using...
5.5.1.2 packet tracer configure ios intrusion prevention system (ips) using...
 
4.4.1.3 packet tracer configuring a zone-based policy firewall (zpf) instru...
4.4.1.3 packet tracer   configuring a zone-based policy firewall (zpf) instru...4.4.1.3 packet tracer   configuring a zone-based policy firewall (zpf) instru...
4.4.1.3 packet tracer configuring a zone-based policy firewall (zpf) instru...
 
Cisco CCNA IPV6 Static Configuration
Cisco CCNA  IPV6 Static ConfigurationCisco CCNA  IPV6 Static Configuration
Cisco CCNA IPV6 Static Configuration
 
Sc manual
Sc manualSc manual
Sc manual
 
Galil ioc7007 catalog
Galil ioc7007 catalogGalil ioc7007 catalog
Galil ioc7007 catalog
 
Visio-VSCHO001_Design
Visio-VSCHO001_DesignVisio-VSCHO001_Design
Visio-VSCHO001_Design
 
CCNA 1 Final v5.0 2014
CCNA 1 Final  v5.0 2014CCNA 1 Final  v5.0 2014
CCNA 1 Final v5.0 2014
 
Cisco commands List for Beginners (CCNA, CCNP)
Cisco commands List for Beginners (CCNA, CCNP)Cisco commands List for Beginners (CCNA, CCNP)
Cisco commands List for Beginners (CCNA, CCNP)
 

En vedette

Neoliberailsm and finance as power in development
Neoliberailsm and finance as power in developmentNeoliberailsm and finance as power in development
Neoliberailsm and finance as power in developmentCristina Medina
 
Fueling Energy Efficiency Programs with Social Media
Fueling Energy Efficiency Programs with Social MediaFueling Energy Efficiency Programs with Social Media
Fueling Energy Efficiency Programs with Social MediaCindy Jolicoeur
 
Blogging a-way-along-the-normandy-coast
Blogging a-way-along-the-normandy-coastBlogging a-way-along-the-normandy-coast
Blogging a-way-along-the-normandy-coastJanLight
 
Kimia organik
Kimia organikKimia organik
Kimia organikNhia Item
 
Contratos para la formacion
Contratos para la formacionContratos para la formacion
Contratos para la formacionPFSGRUPO
 
5 Ways to Turn Volunteerism into a Career Asset
5 Ways to Turn Volunteerism into a Career Asset5 Ways to Turn Volunteerism into a Career Asset
5 Ways to Turn Volunteerism into a Career AssetLinda Descano
 
How to Adapt an Influencer State of Mind
How to Adapt an Influencer State of MindHow to Adapt an Influencer State of Mind
How to Adapt an Influencer State of MindLinda Descano
 
Modern Marketing & Recruiting
Modern Marketing & RecruitingModern Marketing & Recruiting
Modern Marketing & RecruitingLinda Descano
 
Pp sistem informasi perusahaan
Pp sistem informasi perusahaanPp sistem informasi perusahaan
Pp sistem informasi perusahaanNhia Item
 

En vedette (20)

Asniati 1
Asniati 1Asniati 1
Asniati 1
 
Lanjut
LanjutLanjut
Lanjut
 
768768
768768768768
768768
 
Konsep
KonsepKonsep
Konsep
 
Ai
AiAi
Ai
 
AIED
AIEDAIED
AIED
 
Neoliberailsm and finance as power in development
Neoliberailsm and finance as power in developmentNeoliberailsm and finance as power in development
Neoliberailsm and finance as power in development
 
Fueling Energy Efficiency Programs with Social Media
Fueling Energy Efficiency Programs with Social MediaFueling Energy Efficiency Programs with Social Media
Fueling Energy Efficiency Programs with Social Media
 
Blogging a-way-along-the-normandy-coast
Blogging a-way-along-the-normandy-coastBlogging a-way-along-the-normandy-coast
Blogging a-way-along-the-normandy-coast
 
Macael cluster case
Macael cluster caseMacael cluster case
Macael cluster case
 
Bbfc media
Bbfc mediaBbfc media
Bbfc media
 
Kimia organik
Kimia organikKimia organik
Kimia organik
 
Contratos para la formacion
Contratos para la formacionContratos para la formacion
Contratos para la formacion
 
5 Ways to Turn Volunteerism into a Career Asset
5 Ways to Turn Volunteerism into a Career Asset5 Ways to Turn Volunteerism into a Career Asset
5 Ways to Turn Volunteerism into a Career Asset
 
Ai
AiAi
Ai
 
Tidskriftslista 2013
Tidskriftslista 2013Tidskriftslista 2013
Tidskriftslista 2013
 
How to Adapt an Influencer State of Mind
How to Adapt an Influencer State of MindHow to Adapt an Influencer State of Mind
How to Adapt an Influencer State of Mind
 
Modern Marketing & Recruiting
Modern Marketing & RecruitingModern Marketing & Recruiting
Modern Marketing & Recruiting
 
Pp sistem informasi perusahaan
Pp sistem informasi perusahaanPp sistem informasi perusahaan
Pp sistem informasi perusahaan
 
Nine frame
Nine frame Nine frame
Nine frame
 

Similaire à 1385092104 407 _ts-frame%252_b_relay

Packettracersimulationlabl3routing 130306235157-phpapp02
Packettracersimulationlabl3routing 130306235157-phpapp02Packettracersimulationlabl3routing 130306235157-phpapp02
Packettracersimulationlabl3routing 130306235157-phpapp02A.S.M Shmimul Islam.
 
Modul Tournamentof Cisco.doc
Modul Tournamentof Cisco.docModul Tournamentof Cisco.doc
Modul Tournamentof Cisco.doc36Zaini
 
Intro to router_config
Intro to router_configIntro to router_config
Intro to router_configarjuntrk
 
Intro to router_config
Intro to router_configIntro to router_config
Intro to router_config97148881557
 
103320664 eigrp-sba
103320664 eigrp-sba103320664 eigrp-sba
103320664 eigrp-sbajlvive
 
Configure ospf v3 single areaa
Configure ospf v3 single areaaConfigure ospf v3 single areaa
Configure ospf v3 single areaajebong03
 
CCNA_LAB_MANUAL_part1.pptx
CCNA_LAB_MANUAL_part1.pptxCCNA_LAB_MANUAL_part1.pptx
CCNA_LAB_MANUAL_part1.pptxSanathKumarV3
 
4.1.1.10 Packet Tracer - Configuring Extended ACLs Scenario 1.pdf
4.1.1.10 Packet Tracer - Configuring Extended ACLs Scenario 1.pdf4.1.1.10 Packet Tracer - Configuring Extended ACLs Scenario 1.pdf
4.1.1.10 Packet Tracer - Configuring Extended ACLs Scenario 1.pdfssuserf7cd2b
 
第8讲 Rip和Igrp
第8讲 Rip和Igrp第8讲 Rip和Igrp
第8讲 Rip和IgrpF.l. Yu
 
6to4tunnel sample config
6to4tunnel sample config6to4tunnel sample config
6to4tunnel sample configjebong03
 
Frame relay
Frame relayFrame relay
Frame relayIhda N
 
Quanta ze7 r1b_schematics
Quanta ze7 r1b_schematicsQuanta ze7 r1b_schematics
Quanta ze7 r1b_schematicsDATACORP
 
VoiceBootcamp Ccnp collaboration lab guide v1.0 sample
VoiceBootcamp Ccnp collaboration lab guide v1.0 sampleVoiceBootcamp Ccnp collaboration lab guide v1.0 sample
VoiceBootcamp Ccnp collaboration lab guide v1.0 sampleFaisal Khan
 
ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...
ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...
ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...SilvioDias29
 
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docxAll contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docxgalerussel59292
 
Ccna2 mod3-configuring a-router
Ccna2 mod3-configuring a-routerCcna2 mod3-configuring a-router
Ccna2 mod3-configuring a-router97148881557
 

Similaire à 1385092104 407 _ts-frame%252_b_relay (20)

Packettracersimulationlabl3routing 130306235157-phpapp02
Packettracersimulationlabl3routing 130306235157-phpapp02Packettracersimulationlabl3routing 130306235157-phpapp02
Packettracersimulationlabl3routing 130306235157-phpapp02
 
MPLS LAB Practice Vol.1.pdf
MPLS LAB Practice Vol.1.pdfMPLS LAB Practice Vol.1.pdf
MPLS LAB Practice Vol.1.pdf
 
Modul Tournamentof Cisco.doc
Modul Tournamentof Cisco.docModul Tournamentof Cisco.doc
Modul Tournamentof Cisco.doc
 
Intro to router_config
Intro to router_configIntro to router_config
Intro to router_config
 
Intro to router_config
Intro to router_configIntro to router_config
Intro to router_config
 
Packet Card Knowledge Transferfinal
Packet Card Knowledge TransferfinalPacket Card Knowledge Transferfinal
Packet Card Knowledge Transferfinal
 
R1
R1R1
R1
 
103320664 eigrp-sba
103320664 eigrp-sba103320664 eigrp-sba
103320664 eigrp-sba
 
Configure ospf v3 single areaa
Configure ospf v3 single areaaConfigure ospf v3 single areaa
Configure ospf v3 single areaa
 
CCNA_LAB_MANUAL_part1.pptx
CCNA_LAB_MANUAL_part1.pptxCCNA_LAB_MANUAL_part1.pptx
CCNA_LAB_MANUAL_part1.pptx
 
4.1.1.10 Packet Tracer - Configuring Extended ACLs Scenario 1.pdf
4.1.1.10 Packet Tracer - Configuring Extended ACLs Scenario 1.pdf4.1.1.10 Packet Tracer - Configuring Extended ACLs Scenario 1.pdf
4.1.1.10 Packet Tracer - Configuring Extended ACLs Scenario 1.pdf
 
第8讲 Rip和Igrp
第8讲 Rip和Igrp第8讲 Rip和Igrp
第8讲 Rip和Igrp
 
Robotics lec7
Robotics lec7Robotics lec7
Robotics lec7
 
6to4tunnel sample config
6to4tunnel sample config6to4tunnel sample config
6to4tunnel sample config
 
Frame relay
Frame relayFrame relay
Frame relay
 
Quanta ze7 r1b_schematics
Quanta ze7 r1b_schematicsQuanta ze7 r1b_schematics
Quanta ze7 r1b_schematics
 
VoiceBootcamp Ccnp collaboration lab guide v1.0 sample
VoiceBootcamp Ccnp collaboration lab guide v1.0 sampleVoiceBootcamp Ccnp collaboration lab guide v1.0 sample
VoiceBootcamp Ccnp collaboration lab guide v1.0 sample
 
ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...
ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...
ENCOR SA Scenario Especifica o algoritmo de hashing de senha a ser usado, nes...
 
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docxAll contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
All contents are Copyright © 1992–2012 Cisco Systems, Inc. A.docx
 
Ccna2 mod3-configuring a-router
Ccna2 mod3-configuring a-routerCcna2 mod3-configuring a-router
Ccna2 mod3-configuring a-router
 

Dernier

Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024Elizabeth Walsh
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsKarakKing
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Association for Project Management
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 

Dernier (20)

Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 

1385092104 407 _ts-frame%252_b_relay

  • 1. GRUPO 3 Jorge Luis Chalen Ronald Colcha Steven Galarza Luís Lucio Kevin Paz Jorge Rendon Sergio Sabando TROUBLESHOOTING FRAME RELAY Router 1 Errores: 1. Se encuentra mal configurado el mapeo Frame-relay map ip 172.18.221.2 678 broadcast para R1. 2. Falta agregar Frame-relay propio 3. La interfaz Serial0/2/1(DTE) de R1 se encuentra con clock-rate configurado. Soluciones: 1. Se realiza la corrección del error mediante el comando: #Frame-relay map ip 172.18.221.2 182 broadcast 2. Se debe agregar el mapeo Frame-relay: #Frame-relay map ip 172.18.221.2 182 3. Se debe eliminar el clock-rate de la interfaz DTE usando el comando: #no clock-rate 125000 RUNNING-CONFIG: Router>enable Router#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname R1 R1(config)#enable secret class R1(config)#no ip domain lookup R1(config)#interface Loopback0 R1(config-if)#ip address 172.18.11.254 255.255.255.0 R1(config-if)#interface FastEthernet0/0 R1(config-if)#no ip address R1(config-if)#shutdown R1(config-if)#duplex auto R1(config-if)#speed auto R1(config-if)#interface FastEthernet0/1 R1(config-if)#no ip address R1(config-if)#shutdown R1(config-if)#duplex auto R1(config-if)#speed auto R1(config-if)#interface Serial0/2/1 R1(config-if)#no ip address R1(config-if)#shutdown R1(config-if)#no fair-queue
  • 2. R1(config-if)#clockrate 125000 R1(config-if)#interface Serial0/2/0 R1(config-if)#shutdown R1(config-if)#ip address 172.18.221.1 255.255.255.252 R1(config-if)#encapsulation frame-relay R1(config-if)#no frame-relay inverse-arp R1(config-if)#frame-relay map ip 172.18.221.2 182 broadcast R1(config-if)#frame-relay map ip 172.18.221.2 182 R1(config-if)#no shutdown R1(config-if)#router eigrp 1 R1(config-router)#network 172.18.221.0 R1(config-router)#network 172.18.11.0 R1(config-router)#no auto-summary R1(config-router)#line con 0 R1(config-line)#password cisco R1(config-line)#logging synchronous R1(config-line)#line vty 0 4 R1(config-line)#password cisco R1(config-line)#login R1(config-line)#end R1# *Nov 19 18:07:23.647: %LINEPROTO-5-UPDOWN: Line protocol on Interface Loopback0, changed state to up R1# *Nov 19 18:07:24.923: %SYS-5-CONFIG_I: Configured from console by console R1# *Nov 19 18:07:25.159: %LINK-3-UPDOWN: Interface Serial0/2/0, changed state to up R1# R1# R1# *Nov 19 18:07:28.523: %LINK-3-UPDOWN: Interface Serial0/2/0, changed state to down R1#ping 172.18.221.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.18.221.2, timeout is 2 seconds: ..... Success rate is 0 percent (0/5) R1#show frame-relay map Serial0/2/0 (down): ip 172.18.221.2 dlci 182(0xB6,0x2C60), static, CISCO, status deleted R1# *Nov 19 18:08:09.331: %LINK-3-UPDOWN: Interface Serial0/2/0, changed state to up R1# R1# R1# R1#show frame-relay map Serial0/2/0 (up): ip 172.18.221.2 dlci 182(0xB6,0x2C60), static, CISCO, status deleted R1# *Nov 19 18:08:20.331: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/2/0, changed state to up R1#
  • 3. *Nov 19 18:09:14.799: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 1: Neighbor 172.18.221.2 (Serial0/2/0) is up: new adjacency R1#show frame-relay map ping 172.18.221.2 show frame-relay map Serial0/2/0 (up): ip 172.18.221.2 dlci 182(0xB6,0x2C60), static, CISCO, status defined, active R1#show frame-relay map ping 172.18.221.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.18.221.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/29/32 ms R1# R1# *Nov 19 18:12:19.311: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 1: Neighbor 172.18.221.2 (Serial0/2/0) is down: retry limit exceeded R1# Router 2 Errores: 1. Se configuro clock-rate en una interfaz DTE 2. Se realizó mal la configuración en el Frame-relay map 3. Se configuro el LMI como ANSI, mientras el resto de routers están como cisco 4. No se configuro una contraseña en línea virtual Soluciones: 1. Se debe eliminar el clock-rate de la interfaz DTE usando el comando: #no clock-rate 125000 1. Se debe cambiar la configuración del mapeo Frame-relay: #frame-relay map ip 172.18.221.1 181 broadcast 2. Se debe cambiar la configuración del LMI a cisco: #frame-relay lmi-type cisco 3. Se debe establecer una contraseña en línea virtual: #line vty 0 4 #password cisco #login RUNNING-CONFIG: Router>enable Router#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname R2 R2(config)#enable secret class R2(config)#no ip domain lookup R2(config)#interface Loopback0 R2(config-if)#ip address 172.18.111.254 255.255.255.0 R2(config-if)#interface FastEthernet0/0 R2(config-if)#no ip address R2(config-if)#shutdown R2(config-if)#duplex auto
  • 4. R2(config-if)#speed auto R2(config-if)#interface FastEthernet0/1 R2(config-if)#no ip address R2(config-if)#shutdown R2(config-if)#duplex auto R2(config-if)#speed auto R2(config-if)#interface Serial0/2/0 R2(config-if)#no ip address R2(config-if)#shutdown R2(config-if)#no fair-queue R2(config-if)#interface Serial0/2/1 R2(config-if)#shutdown R2(config-if)#ip address 172.18.221.2 255.255.255.252 R2(config-if)#encapsulation frame-relay R2(config-if)#no frame-relay inverse-arp R2(config-if)#frame-relay map ip 172.18.221.1 181 broadcast R2(config-if)#frame-relay map ip 172.18.221.2 181 R2(config-if)#no shutdown R2(config-if)#router eigrp 1 R2(config-router)#network 172.18.221.0 R2(config-router)#network 172.18.111.0 R2(config-router)#no auto-summary R2(config-router)#line con 0 R2(config-line)#password cisco R2(config-line)#logging synchronous R2(config-line)#line vty 0 4 R2(config-line)#password cisco R2(config-line)#login R2(config-line)#end *Nov 19 17:45:51.051: %LINEPROTO-5-UPDOWN: Line protocol on Interface Loopback0, changed state to up R2(config-line)#end R2# *Nov 19 17:45:52.343: %LINK-3-UPDOWN: Interface Serial0/2/1, changed state to up R2# *Nov 19 17:45:52.815: %SYS-5-CONFIG_I: Configured from console by console R2# R2#pi *Nov 19 17:45:55.767: %LINK-3-UPDOWN: Interface Serial0/2/1, changed state to do wn R2#ping 172.18.221.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.18.221.1, timeout is 2 seconds: ..... Success rate is 0 percent (0/5) R2#sh fr R2#sh frame-relay map Serial0/2/1 (down): ip 172.18.221.1 dlci 181(0xB5,0x2C50), static, broadcast,
  • 5. CISCO, status deleted Serial0/2/1 (down): ip 172.18.221.2 dlci 181(0xB5,0x2C50), static, CISCO, status deleted R2# *Nov 19 17:46:36.591: %LINK-3-UPDOWN: Interface Serial0/2/1, changed state to up R2#show ip route Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2 E1 - OSPF external type 1, E2 - OSPF external type 2 i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2 ia - IS-IS inter area, * - candidate default, U - per-user static route o - ODR, P - periodic downloaded static route Gateway of last resort is not set 172.18.0.0/24 is subnetted, 1 subnets C 172.18.111.0 is directly connected, Loopback0 R2# *Nov 19 17:46:47.591: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/2/ 1, changed state to up R2#show f R2#show fra R2#show frame-relay pvc PVC Statistics for interface Serial0/2/1 (Frame Relay DTE) Active Inactive Local 1 0 Switched 0 0 Unused 0 0 Deleted Static 0 0 0 0 0 0 DLCI = 181, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0/2/1 input pkts 0 output pkts 0 in bytes 0 out bytes 0 dropped pkts 0 in pkts dropped 0 out pkts dropped 0 out bytes dropped 0 in FECN pkts 0 in BECN pkts 0 out FECN pkts 0 out BECN pkts 0 in DE pkts 0 out DE pkts 0 out bcast pkts 0 out bcast bytes 0 5 minute input rate 0 bits/sec, 0 packets/sec 5 minute output rate 0 bits/sec, 0 packets/sec pvc create time 00:01:13, last time pvc status changed 00:00:07 R2#sh frame-relay map Serial0/2/1 (up): ip 172.18.221.1 dlci 181(0xB5,0x2C50), static, broadcast, CISCO, status defined, active Serial0/2/1 (up): ip 172.18.221.2 dlci 181(0xB5,0x2C50), static, CISCO, status defined, active R2#ping 172.18.221.1
  • 6. Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.18.221.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/29/32 ms R2# FR- Switch Errores: 1. Falta agregar la ruta Frame-relay desde R2 con DLCI 182 a R1 con DLCI 181 Soluciones: 1. Se debe agregar la ruta Frame-relay desde R2 con DLCI 182 hacia R1 con DLCOI 181 usando el comando: #Frame-relay route 182 interface serial 0/2/1 181 RUNNING-CONFIG: FR-Switch#show running-config Building configuration... Current configuration : 1076 bytes ! version 12.4 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname FR-Switch ! boot-start-marker boot-end-marker ! enable secret 5 $1$0gHN$ddajjkNEa9O70zzr/7Tc5/ ! no aaa new-model ! resource policy ! ip subnet-zero ! ! ip cef --More-! ! no ip domain lookup frame-relay switching ! ! ! !
  • 7. interface FastEthernet0/0 no ip address shutdown duplex auto speed auto ! interface FastEthernet0/1 no ip address shutdown duplex auto speed auto ! interface Serial0/2/0 no ip address encapsulation frame-relay --More-clock rate 125000 frame-relay intf-type dce frame-relay route 182 interface Serial0/2/1 181 ! interface Serial0/2/1 no ip address encapsulation frame-relay clock rate 125000 frame-relay intf-type dce frame-relay route 181 interface Serial0/2/0 182 ! ip classless ! ip http server ! ! control-plane ! banner motd ^CSOLO PERSONAL AUTORIZADO^C ! line con 0 password cisco --More-line aux 0 line vty 0 4 password cisco login ! scheduler allocate 20000 1000 ! end FR-Switch# login