La présentation est en train de télécharger. S'il vous plaît, attendez

La présentation est en train de télécharger. S'il vous plaît, attendez

TP - IS-IS Configuration sur Frame Relay avec Routeur FR-Switch

Présentations similaires


Présentation au sujet: "TP - IS-IS Configuration sur Frame Relay avec Routeur FR-Switch"— Transcription de la présentation:

1 TP - IS-IS Configuration sur Frame Relay avec Routeur FR-Switch
CFI_Site_Paris

2 Schéma du réseau Loopback0: /24 S0/0/ /24 EAST S0/0/1 S0/0/ /24 201 S0/0/1 DCE HQ S0/0/1 102 FRS 103 S0/0/0 DCE S0/1/0 DCE Loopback0: /24 301 S0/0/ /24 S0/0/ /24 WEST Loopback0: /24 - Objectifs  Configurer et vérifier les sous-interfaces Frame Relay point à point  Configurer et vérifier le fonctionnement de IS-IS sur des sous-interfaces Frame Relay point à point  Montrez les non correspondances de types d'interface Frame Relay dans les adjacences IS-IS - Scénario ITA vient de connecter deux agences régionales au site central en utilisant Frame Relay avec une topologie "hub and spoke". On vous demande de configurer le routage IS-IS dans ce réseau. CFI_Site_Paris

3 - Etape 1: Adressage et configuration de base
Câblez le réseau et configurez le nom de host d'après le schéma. Dévalidez DNS lookup et configurez les adresses IP sur les interfaces FastEthernet ou loopback. Ne configurez pas les interfaces Serial et le routage IS-S pour le moment. Tant que Frame Relay n'est pas configuré, vous ne pouvez pas utiliser ping pour la connectivité. - Etape 2: Configuration Frame Relay HQ agit comme routeur central (hub) dans cette topologie hub-and-spoke. Il atteint EAST et WEST via deux PVcs séparés IS-IS peut fonctionner uniquement sur des réseaux NBMA (tel que Frame Relay) configurés avec un maillage total. Toute autre configuration peut causer de sérieux problèmes de con- nectivité et de routage. Même avec un réseau totalement maillé configuré, il n'y a aucune garantie que le maillage total soit permanent. Une défaillance dans le réseau WAN commu- té sous-jacent ou une mauvaise configuration sur un ou plusieurs routeurs peut casser le maillage total temporairement ou en permanence. Eviter les configurations NBMA multi- point pour les réseaux IS-IS; utilisez des sous-interfaces point à point à la place. Configurez Frame Relay sur l'interface Serial de HQ comme suit: HQ(config)# interface serial 0/0/1 HQ(config-if)# encapsulation frame-relay HQ(config-if)# no shutdown HQ(config-if)# interface s0/0/1.102 point-to-point HQ(config-subif)# ip address HQ(config-subif)# frame-relay interface-dlci 102 HQ(config-subif)# interface s0/0/1.103 point-to-point HQ(config-subif)# ip address HQ(config-subif)# frame-relay interface-dlci 103 Configurez l'interface serial de EAST: EAST(config)# interface serial 0/0/1 EAST(config-if)# encapsulation frame-relay EAST(config-if)# no shutdown EAST(config-if)# interface serial 0/0/1.201 point-to-point EAST(config-subif)# ip address EAST(config-subif)# frame-relay interface-dlci 201 Configurez l'interface serial de WEST: WEST(config)# interface serial 0/0/0 WEST(config-if)# encapsulation frame-relay WEST(config-if)# no shutdown WEST(config-if)# interface serial 0/0/0.301 point-to-point WEST(config-subif)# ip address WEST(config-subif)# frame-relay interface-dlci 301 CFI_Site_Paris

4 Pouvez-vous joindre toutes les interfaces?
Vérifiez le fonctionnement du Frame Relay en pinguant EAST et WEST depuis HQ. Pouvez-vous joindre toutes les interfaces? Entrez les commandes show frame-relay pvc et show frame-relay map pour résoudre les problèmes de connectivité. HQ# show frame-relay pvc PVC Statistics for interface Serial0/0/1 (Frame Relay DTE) Active Inactive Deleted Static Local Switched Unused DLCI = 102, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0/0/1.102 input pkts 58 output pkts 52 in bytes 13130 out bytes 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 32 out bcast bytes 10956 5 minute input rate 0 bits/sec, 0 packets/sec 5 minute output rate 0 bits/sec, 0 packets/sec pvc create time 00:37:48, last time pvc status changed 00:28:42 DLCI = 103, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0/0/1.103 input pkts 46 output pkts 48 in bytes 10322 out bytes dropped pkts 0 in pkts dropped 0 out bcast pkts 28 out bcast bytes 9604 pvc create time 00:37:14, last time pvc status changed 00:24:54 HQ# show frame-relay map Serial0/0/1.102 (up): point-to-point dlci, dlci 102(0x66,0x1860), broadcast status defined, active Serial0/0/1.103 (up): point-to-point dlci, dlci 103(0x67,0x1870), broadcast Quels sont les protocoles de couche 3 acheminés sur les PVCs configurés? CFI_Site_Paris

5 Comment cela diffère-t-il avec la sortie de la commande show frame-relay map quand des
interfaces multipoint sont configurées? Quel protocole de transport IS-IS utilise-t-il? Pourquoi ces paquets seront-ils acheminés? Etape 3: Configurer et vérifier IS-IS sur Frame Relay Comme OSPF, IS-IS est configuré en validant un processus IS-IS et en spécifiant quelles sont les interfaces qui participent au processus IS-IS. Configurer IS-IS pour qu'il opère sur ce réseau point à point avec les commandes suivantes: HQ(config)# router isis HQ(config-router)# net HQ(config-router)# interface serial 0/0/1.102 HQ(config-if)# ip router isis HQ(config-if)# interface serial 0/0/1.103 HQ(config-if)# interface loopback 0 EAST(config)# router isis EAST(config-router)# net EAST(config-router)# int serial 0/0/1.201 EAST(config-if)# ip router isis EAST(config-if)# int loopback 0 WEST(config)# router isis WEST(config-router)# net WEST(config-router)# int serial 0/0/0.301 WEST(config-if)# ip router isis WEST(config-if)# int loopback 0 WEST(config-if)# ip router isis Vérifiez votre configuration IS-IS en entrant la commande show ip route sur chaque rou teur. WEST# show ip route <partie supprimée> Gateway of last resort is not set C /24 is directly connected, Serial0/0/0.301 C /24 is directly connected, Loopback0 i L /24 [115/20] via , Serial0/0/0.301 i L /24 [115/20] via , Serial0/0/0.301 i L /24 [115/30] via , Serial0/0/0.301 CFI_Site_Paris

6 Si chaque routeur a sa table complète avec les routes vers les réseaux 192.168.10/0/24,
/24 et /24 c'est que vous avez configuré IS-IS avec succès pour qu'il opère au-dessus de Frame Relay. Testez ces routes en pinguant les interfaces FastEthernet ou Loopback de chaque routeur depuis la console sur WEST Pouvez-vous pinguer toutes les interfaces? Finalement entrez les commandes show isis database et show isis topology. HQ# show isis database IS-IS Level-1 Link State Database: LSPID LSP Seq Num LSP Checksum LSP Holdtime ATT/P/OL HQ *0x x3B7A /0/0 EAST x xA0ED /0/0 WEST x x /0/0 IS-IS Level-2 Link State Database: HQ *0x x2F3C /0/0 EAST x x90E /0/0 WEST x x5B /0/0 EAST# show isis topology IS-IS paths to level-1 routers System Id Metric Next-Hop Interface SNPA HQ HQ Se0/0/ DLCI 201 EAST WEST HQ Se0/0/ DLCI 201 IS-IS paths to level-2 routers Notez qu'aucun LSP pseudonode (avec circuit ID non nul) apparaît dans la sortie de show isis database car nous utilisons des liaisons point à point pour connecter les routeurs Comment le SNPA (SubNetwork Point of Attachment) est-il exprimé dans un réseau Frame Relay? CFI_Site_Paris

7 - Etape 4: Vérifier la connectivité IS-IS
Lancez le script TCL suivant sur tous les routeurs pour vérifier la connectivité foreach address { } { ping $address } Vous devez obtenir des réponses ICMP pour chacune des adresses pinguées Etape 5: Démonstration de la non correspondance du type d'interface IS-IS Une erreur commune avec la configuration de IS-IS est la non correspondance des types d'interface dans un environnement NBMA (Frame Relay ou ATM). pour illustrer ceci, pas- sez l'interface point à point de EAST en interface multipoint. Retirez les commandes con- figurées pour l'interface Serial0/0/1.201 avec les commandes no respectives. Ensuite vous créez une sous-interface multipoint nommée Serial0/0/ Réentrez les commandes que vous avez retirées pour la sous-interface Serial0/0/1.201 pour cette nouvelles sous interface. EAST(config)# interface serial 0/0/1.201 EAST(config-subif)# no ip address EAST(config-subif)# no ip router isis EAST(config-subif)# no frame-relay interface-dlci 201 EAST(config-subif)# interface serial 0/0/ multipoint EAST(config-subif)# ip address EAST(config-subif)# ip router isis EAST(config-subif)# frame-relay interface-dlci 201 Examinez la sortie de la commande show clns neighbors sur HQ et EAST: HQ# show clns neighbors System Id Interface SNPA State Holdtime Type Protocol WEST Se0/0/ DLCI Up L1L2 IS-IS EAST# show clns neighbors HQ Se0/0/ DLCI Up IS ES-IS La sortie indique une non correspondance des types d'interface. Depuis la Release 12.1(1)T de l'IOS Cisco, une non correspondance IS-IS est indiquée dans les cas suivants:  EAST (multipoint) reçoit des PDU Hello point à point, il comprend que le type est incor- rect et installe le voisin comme un ES. EAST montre HQ dans la commande show clns neighbors avec le protocole ES-IS. CFI_Site_Paris

8  HQ (point à point) reçoit des PDUs Hello LAN, trouve une non correspondance et ignore le voisin. EAST n'apparaît pas dans la sortie de la commande show clns neighbors. La sortie de la commande debug isis adj-packets montre les PDUs IIH LAN entrantes et EAST déclarant la non correspondance. EAST# debug isis adj-packets IS-IS Adjacency related packets debugging is on 00:31:58: ISIS-Adj: Sending L1 LAN IIH on Loopback0, length 1514 00:31:58: ISIS-Adj: Sending L2 LAN IIH on Loopback0, length 1514 00:31:59: ISIS-Adj: Encapsulation failed for L2 LAN IIH on Serial0/0/1.2001 00:31:59: ISIS-Adj: Encapsulation failed for L1 LAN IIH on Serial0/0/1.2001 00:32:01: ISIS-Adj: Sending L1 LAN IIH on Loopback0, length 1514 00:32:01: ISIS-Adj: Sending L2 LAN IIH on Loopback0, length 1514 00:32:02: ISIS-Adj: Encapsulation failed for L2 LAN IIH on Serial0/0/1.2001 00:32:03: ISIS-Adj: Encapsulation failed for L1 LAN IIH on Serial0/0/1.2001 00:32:04: ISIS-Adj: Sending L2 LAN IIH on Loopback0, length 1514 00:32:04: ISIS-Adj: Sending L1 LAN IIH on Loopback0, length 1514 00:32:04: ISIS-Adj: Rec serial IIH from DLCI 201 (Serial0/0/1.2001), cir type L1L2, cir id 00, length 1499 00:32:04: ISIS-Adj: Point-to-point IIH received on multi-point interface: ignored IIH 00:32:05: ISIS-Adj: Encapsulation failed for L2 LAN IIH on Serial0/0/1.2001 00:32:06: ISIS-Adj: Encapsulation failed for L1 LAN IIH on Serial0/0/1.2001 CFI_Site_Paris

9 Configuration d'un Routeur en Commutateur Frame Relay
La configuration suivante permet à un routeur 2800 avec deux cartes WIC-2A/S ou WIC-2T d'agir en commutateur Frame Relay pour ce Lab. FRS# show run ! hostname FRS no ip domain-lookup frame-relay switching interface Serial0/0/0 no ip address encapsulation frame-relay clockrate frame-relay intf-type dce frame-relay route 102 interface Serial0/0/1 201 frame-relay route 103 interface Serial0/1/0 301 no shutdown interface Serial0/0/1 frame-relay route 201 interface Serial0/0/0 102 interface Serial0/1/0 frame-relay route 301 interface Serial0/0/0 103 end CFI_Site_Paris


Télécharger ppt "TP - IS-IS Configuration sur Frame Relay avec Routeur FR-Switch"

Présentations similaires


Annonces Google