lunes, 9 de mayo de 2011

Frame Relay Switching

Posted by Nicolas | lunes, 9 de mayo de 2011 | Category: , |

A continuación uno de los tópicos que antiguamente era considerados como una caja negra para el examen de laboratorio del CCIE® de Routing & Switching. A partir de la versión 4 de este examen, Frame-Relay Switching es un tópico que los candidatos deben manejar y saber configurar. Para el siguiente ejemplo se configura las interfaces seriales de R2 y R3 hacia R1 como se ve en la figura.


R2#sh run int s2/0
Building configuration...

Current configuration : 116 bytes
!
interface Serial2/0
ip address 192.0.2.2 255.255.255.224
encapsulation frame-relay
serial restart-delay 0
end

R3#sh run int s3/0
Building configuration...

Current configuration : 116 bytes
!
interface Serial3/0
ip address 192.0.2.3 255.255.255.224
encapsulation frame-relay
serial restart-delay 0
end

Dado que se está haciendo una configuración back-to-back Frame Relay, los circuitos se mantendrán caídos (down) hasta que o bien se deshabilite el keepalive de las interfaces o bien se configure R1 como frame relay switch como se verá a continuación.

frame switching
!
int s2/0
frame-relay intf-type dce
!
int s3/0
frame-relay intf-type dce

A esta altura obviamente no exitirá información de PVC's en los spokes ya que no se ha configurado nada aún.

R2#sh frame pvc

R2#

R3#sh frame pvc

R3#

Se configurará Frame-Relay Switching con el comando connect (Frame Relay).

R1(config)#connect R2-R3 s2/0 222 s3/0 333

Luego se podrá ver en los spokes que la información de los PVC's disponibles ha sido transmitida.

R2#sh frame pvc

PVC Statistics for interface Serial2/0 (Frame Relay DTE)

Active Inactive Deleted Static
Local 1 0 0 0
Switched 0 0 0 0
Unused 0 0 0 0

DLCI = 222, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial2/0

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:00:13, last time pvc status changed 00:00:13

R3#sh frame pvc

PVC Statistics for interface Serial3/0 (Frame Relay DTE)

Active Inactive Deleted Static
Local 1 0 0 0
Switched 0 0 0 0
Unused 0 0 0 0

DLCI = 333, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial3/0

input pkts 1 output pkts 1 in bytes 34
out bytes 34 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 1 out bcast bytes 34
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
pvc create time 00:00:16, last time pvc status changed 00:00:16

Pero no sólo se tendrá eso, dado que no se ha desabilitado frame-relay inverse-arp, se tendrá:

R2#sh frame map
Serial2/0 (up): ip 192.0.2.3 dlci 222(0xDE,0x34E0), dynamic,
broadcast,
CISCO, status defined, active

R3#sh frame map
Serial3/0 (up): ip 192.0.2.2 dlci 333(0x14D,0x50D0), dynamic,
broadcast,
CISCO, status defined, active

...y eso sería todo:

R2#ping 192.0.2.3

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.0.2.3, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 36/41/48 ms

Otra forma sería con el comando frame-relay route:

R1(config)#no connect R2-R3 s2/0 222 s3/0 333
R1(config)#
R1(config-if)#int s2/0
R1(config-if)#frame-relay route 222 interface s3/0 333
R1(config-if)#
R1(config-if)#int s3/0
R1(config-if)#frame-relay route 333 interface s2/0 222

R2#ping 192.0.2.3

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.0.2.3, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 36/40/44 ms

En total 0 comentarios:


Leave a Reply