Routage Inter VlansRoutage Inter Vlan
Routage Inter VlansRoutage Inter Vlan
Routage Inter VlansRoutage Inter Vlan
I.
II. III. A. B. C. IV. A. B.
Sommaire
Introduction ..................................................................................................................................... 2 Configuration de Vlans ................................................................................................................ 2 Switch1 ........................................................................................................................................ 3 Switch2 ........................................................................................................................................ 4 Switch0 ........................................................................................................................................ 4 Configuration Inter-Vlans ............................................................................................................ 5 Switch0 ........................................................................................................................................ 6 Routeur ........................................................................................................................................ 6
II.
Introduction
Le but de ce cours est de vous apprendre configurer un routeur pour raliser du routage intervlans.
2|Page
03/04/2011
Rcapitulatif des adresses IP : Nom PC1-Vlan100 PC2-Vlan100 PC1-Vlan200 PC2-Vlan200 PC1-Vlan300 PC2-Vlan200 10.10.0.2 10.20.0.1 10.20.0.2 10.30.0.1 10.30.0.2
Gateway 10.10.0.254 10.10.0.254 10.20.0.254 10.20.0.254 10.30.0.254 10.30.0.254 Vlan vlan 100 vlan 100 vlan 200 vlan 200 vlan 300 vlan 300
A.
Switch1
Nous commenons par configurer le Switch1. On va lui donner un nom, on va lui dire de ne pas rsoudre les noms (commandes "no ip domain-lookup"), et on va dclarer les Vlans :
Switch#configure terminal Enter configuration commands, one per line. Switch(config)#hostname Switch1 Switch1(config)#no ip domain-lookup Switch1(config)#vlan 100 Switch1(config-vlan)#exit Switch1(config)#vlan 200 Switch1(config-vlan)#exit End with CNTL/Z.
Et pour finir nous crons le lien trunk permettant aux Vlans dchanger entre eux.
Switch1(config)#interface fastEthernet 0/24 Switch1(config-if)#switchport mode trunk Switch1(config-if)#switchport trunk native vlan 1 Switch1(config-if)#switchport trunk allowed vlan 100 Switch1(config-if)#switchport trunk allowed vlan add 200
3|Page
03/04/2011
B.
Switch2
Et pour finir nous crons le lien trunk permettant aux Vlans dchanger entre eux.
Switch2(config)#interface fastEthernet 0/24 Switch2(config-if)#switchport mode trunk Switch2(config-if)#switchport trunk native vlan 1 Switch2(config-if)#switchport trunk allowed vlan 100 Switch2(config-if)#switchport trunk allowed vlan add 300
C.
Switch0
Pour finir nous configurons le Switch0, qui est notre switch central.
Switch#configure terminal Enter configuration commands, one per line. Switch(config)#hostname Switch0 Switch0(config)#no ip domain-lookup Switch0(config)#vlan 100 Switch0(config-vlan)#exit Switch0(config)#vlan 200 Switch0(config-vlan)#exit Switch0(config)#vlan 300 Switch0(config-vlan)#exit End with CNTL/Z.
4|Page
03/04/2011
PC1-Vlan100 vers PC2-VLAN100 fonctionne bien PC1-Vlan200 vers PC2-VLAN200 fonctionne bien PC1-Vlan300 vers PC2-VLAN300 fonctionne bien
Mais nous observons aussi que les ping entre les PCs qui ne sont pas dans le mme vlan ne fonctionnent pas.
5|Page
03/04/2011
A.
Switch0
B.
Routeur
Nous nous attaquons ensuite la configuration de notre routeur : Nous configurons son nom et on lui dsactive la rsolution de nom.
Router#configure terminal Enter configuration commands, one per line. Router(config)#hostname Routeur Routeur(config)#no ip domain-lookup End with CNTL/Z.
6|Page
03/04/2011
Si nous recommenons nos test, nous pouvons observer que : PC1-Vlan100 vers PC2-VLAN100 fonctionne bien PC1-Vlan200 vers PC2-VLAN200 fonctionne bien PC1-Vlan300 vers PC2-VLAN300 fonctionne bien Comme prcdemment, mais que les ping entre Vlans fonctionnent aussi, par exemple : PC1-Vlan100 vers PC1-VLAN200 fonctionne bien PC1-Vlan200 vers PC1-VLAN300 fonctionne bien PC2-Vlan300 vers PC1-VLAN100 fonctionne bien Vous pouvez tlcharger le fichier Packet tracert en cliquant sur le lien ci-dessous :
Download
7|Page
03/04/2011