12 avr. 2013

Cisco: Frame Relay, Point-to-Multipoint

Le but ici est de partager les informations de routage OSPF via Frame-Relay.

Fichier a telecharger: FR_multipoint_clean.pkt
Logiciel: packet tracer




Configurer:

  1. Les interfaces LANs
  2. DHCP
  3. Frame-Relay
  4. OSPF
Notes:

DLCI 102 <--> 201
DLCI 103 <--> 301
DLCI 203 <--> 302

LMI => ANSI
encapsulation frame-relay ietf
frame-relay lmi-type ansi



R10x et R20x : 10.0.12.0/30
R10x et R30x :10.0.13.0/30
R20x et R30x : 10.0.23.0/30
























****************************************************
Correction
****************************************************

PVC (Permanent Virtual Circuit)
DLCI (Data Link Connection Identifier)
LMI (Local Management Interface)

1.- Configuration des interfaces LAN:
`````````````````````````````````

R10X:
    int f0/0
     ip address 192.168.10.254 255.255.255.0
     description vers LAN10
     no shut


R20X:
    int f0/0
     ip address 192.168.20.126 255.255.255.128
     description vers LAN20
     no shut


R30X:
    int f0/0
     ip address 192.168.30.14 255.255.255.240
     description vers LAN30
     no shut



2.- Configuration des DHCP:
``````````````````````````````
L'option pour mettre une duree de bail n'est pas disponible dans Packet Tracer, sinon la commande serait:
Router(dhcp-config)#lease {days [hours][minutes]|infinite}
      (dhcp-config)#lease 0 12 <= duree du bail a 12h

R10X:
    ip dhcp pool LAN10
     network 192.168.10.0 255.255.255.0
     default-router 192.168.10.254
     dns-server 8.8.8.8 8.8.4.4


R20X:
    ip dhcp pool LAN20
     network 192.168.20.0 /25
     default-router 192.168.20.126
     dns-server 8.8.8.8 8.8.4.4


R30X:
    ip dhcp pool LAN30
     network 192.168.30.0 /28
     default-router 192.168.30.14
     dns-server 8.8.8.8 8.8.4.4



3.- Configuration de Frame-Relay:
```````````````````````````````````
-> Activation de FR ietf avec LMI de type ANSI:

R10X:
    int s2/0
     encapsulation frame-relay ietf
     frame-relay lmi-type ansi
     no shut

   
R20X:
    int s2/0
     encapsulation frame-relay ietf
     frame-relay lmi-type ansi
     no shut


R30X:
    int s2/0
     encapsulation frame-relay ietf
     frame-relay lmi-type ansi
     no shut

    

-> Creation du PVC entre R10X et R20X:

R10X:
    int s2/0.102 point-to-point
     ip address 10.0.12.1 255.255.255.252
     description vers R20X DLCI 102
     frame-relay interface-dlci 102
     bandwidth 128

   
R20X:
    int s2/0.201 point-to-point
     ip address 10.0.12.2 255.255.255.252
     description vers R10X dlci 201
     frame-relay interface-dlci 201
     bandwidth 128

    

-> Creation du PVC entre R10X et R30X:

R10X:
    int s2/0.103 point-to-point
     ip address 10.0.13.1 255.255.255.252
     description vers R30X DLCI 103
     frame-relay interface-dlci 103
     bandwidth 128

   
R30X:
    int s2/0.301 point-to-point
     ip address 10.0.13.2 255.255.255.252
     description vers R10X dlci 301
     frame-relay interface-dlci 301
     bandwidth 128

    

-> Creation du PVC entre R20X et R30X:

R20X:
    int s2/0.203 point-to-point
     ip address 10.0.23.1 255.255.255.252
     description vers R30X DLCI 203
     frame-relay interface-dlci 203
     bandwidth 128

   
R30X:
    int s2/0.302 point-to-point
     ip address 10.0.23.2 255.255.255.252
     description vers R20X dlci 302
     frame-relay interface-dlci 302
     bandwidth 128


   
4.- Configuration de l'OSPF:
`````````````````````````````

R10X:
    router ospf 10
     network 10.0.12.0 0.0.0.3 area 0
     network 10.0.13.0 0.0.0.3 area 0
     network 192.168.10.0 0.0.0.255 area 0
     passive-interface F0/0

   
R20X:
    router ospf 20
     network 10.0.12.0 0.0.0.3 area 0
     network 10.0.23.0 0.0.0.3 area 0
     network 192.168.20.0 0.0.0.127 area 0
     passive-interface f0/0

   
R30X:
    router ospf 30
     network 10.0.13.0 0.0.0.3 area 0
     network 10.0.23.0 0.0.0.3 area 0
     network 192.168.30.0 0.0.0.15 area 0
     passive-interface f0/0



R30X#show ip route
!---sortie tronquee----!
     10.0.0.0/30 is subnetted, 3 subnets
O       10.0.12.0 [110/1562] via 10.0.13.1, 00:00:22, Serial2/0.301
                  [110/1562] via 10.0.23.1, 00:00:22, Serial2/0.302

C       10.0.13.0 is directly connected, Serial2/0.301
C       10.0.23.0 is directly connected, Serial2/0.302
O    192.168.10.0/24 [110/782] via 10.0.13.1, 00:00:34, Serial2/0.301
     192.168.20.0/25 is subnetted, 1 subnet
s
O       192.168.20.0 [110/782] via 10.0.23.1, 00:00:22, Serial2/0.302
     192.168.30.0/28 is subnetted, 1 subnets

C       192.168.30.0 is directly connected, FastEthernet0/0


 Fichier contenant la correction a telecharger: FR_multipoint_correction.pkt

1 commentaire: