Mixture of Point-to-Point and Multipoint frame-relay

R1 est configuré en « point to point » vers R4, et en « multipoint » vers R2 et R3
Les interfaces « point-to-point » utilisent « frame-relay interface-dlci » pour indiquer le N° de DLCI
Les interfaces « multipoint » utilisent « frame-relay map ip » pour indiquer le N° de DLCI

remarques:

en mode multipoint, inverse-arp doir être désactivé
inverse-arp est désactivé automatiquement dans une sous-interface

Configuration

R1#show run | b Serial0/0
interface Serial0/0
 no ip address
 encapsulation frame-relay
!
interface Serial0/0.14 point-to-point
 ip address 10.1.14.1 255.255.255.0
 frame-relay interface-dlci 104
!
interface Serial0/0.123 multipoint
 ip address 10.1.123.1 255.255.255.0
 frame-relay map ip 10.1.123.2 102
 frame-relay map ip 10.1.123.3 103
!
R2#show run | b Serial0/0
interface Serial0/0
 no ip address
 encapsulation frame-relay
!
interface Serial0/0.21 point-to-point
 ip address 10.1.123.2 255.255.255.0
 frame-relay interface-dlci 201
!
R3#show run | b Serial1/0
interface Serial1/0
 ip address 10.1.123.3 255.255.255.0
 encapsulation frame-relay
 frame-relay map ip 10.1.123.1 301
 frame-relay map ip 10.1.123.2 301
 frame-relay map ip 10.1.123.3 301
 no frame-relay inverse-arp
!
R4#show run | b Serial0/0
interface Serial0/0
 no ip address
 encapsulation frame-relay
!
interface Serial0/0.41 point-to-point
 ip address 10.1.14.4 255.255.255.0
 frame-relay interface-dlci 401
!

Vérifications

R1#show frame map
Serial0/0.123 (up): ip 10.1.123.2 dlci 102(0x66,0x1860), static,
              CISCO, status defined, active
Serial0/0.123 (up): ip 10.1.123.3 dlci 103(0x67,0x1870), static,
              CISCO, status defined, active
Serial0/0.14 (up): point-to-point dlci, dlci 104(0x68,0x1880), broadcast
          status defined, active
R2#show frame-relay map
Serial0/0.21 (up): point-to-point dlci, dlci 201(0xC9,0x3090), broadcast
          status defined, active
R3#show frame-relay map
Serial1/0 (up): ip 10.1.123.1 dlci 301(0x12D,0x48D0), static,
              CISCO, status defined, active
Serial1/0 (up): ip 10.1.123.2 dlci 301(0x12D,0x48D0), static,
              CISCO, status defined, active
Serial1/0 (up): ip 10.1.123.3 dlci 301(0x12D,0x48D0), static,
              CISCO, status defined, active
R4#show frame map
Serial0/0.41 (up): point-to-point dlci, dlci 401(0x191,0x6410), broadcast
          status defined, active
This entry was posted in Frame Relay. Bookmark the permalink.

Comments are closed.