diff --git a/Revue PRojet.odt b/Revue PRojet.odt new file mode 100644 index 0000000000000000000000000000000000000000..6b9dffd445e4c86259c99b902a422378c9903443 Binary files /dev/null and b/Revue PRojet.odt differ diff --git a/procedure.md b/procedure.md new file mode 100644 index 0000000000000000000000000000000000000000..acf796081a1d38fab514b09a947d66f4d5d1f543 --- /dev/null +++ b/procedure.md @@ -0,0 +1,152 @@ +# Procedure + +Architecture : + +Routeur 1 (Interface GE 0/0) à Routeur 2( Interface GE 0/0) + +Switch 1 ( interface GE 0/1 ) à Routeur 1 ( interface GE 0/1 ) + +Switch 2 ( interface GE 0/1 ) à Routeur 2 ( interface GE 0/1 ) + + + +## Switch + + + +Switching (Version : Switch 2960) : + +Nommer switch + + hostname S1 + +Sécurisé avec mot de passe sur switch : + + conf t + enable password "mot de passe" + exit + +Création VLAN 10: + + vlan 10 + name Comptabilite + exit + +Création VLAN 20: + + vlan 10/20 + name Production + exit + + +Création VLAN 30: + + vlan 10/20/30 + name Direction + exit + +Organisation interface vlan 10 + + interface range fa 0/1 - 6 + switchport acces vlan 10 + exit + +Organisation interface vlan 20 + + interface range fa 0/7 - 12 + switchport acces vlan 20 + exit + +Organisation interface vlan 30 + + interface FA 0/24 + switchport acces vlan 30 + exit + +Configuration trunk inter-vlan + + interface gig 0/1 + switchport mode trunk + no shutdown + +## Routeur + +Nommer routeur + + hostname R1 + +Creation sous-interface VLAN 10 + + enable + conf t + interface gig 0/1.1 + encapsulation dot1Q 10 + ip address 192.168.10.254 255.255.255.0 + no shutdown + exit + + +Creation sous-interface VLAN 20 + + enable + conf t + interface gig 0/1.2 + encapsulation dot1Q 20 + ip address 192.168.20.254 255.255.255.0 + no shutdown + exit + +Creation sous-interface VLAN 30 + + enable + conf t + interface gig 0/1.3 + encapsulation dot1Q 30 + ip address 192.168.30.254 255.255.255.0 + no shutdown + exit + +Activation interface + + interface giga 0/1 + no shutdown + +Test : + + Ping inter vlan + + +## Configuration inter-routage // procédure à faire sur le routeur 1 + + config t + router rip + network 192.168.10.0 + network 192.168.20.0 + network 192.168.30.0 + network 192.168.40.0 + network 192.168.50.0 + network 192.168.60.0 + exit + + interface gig0/0 + ip address 10.0.0.1 255.0.0.0 + no shutdown + +## Configuration inter-routage // procédure à faire sur le routeur 2 + + config t + router rip + network 192.168.10.0 + network 192.168.20.0 + network 192.168.30.0 + network 192.168.40.0 + network 192.168.50.0 + network 192.168.60.0 + exit + + interface gig0/0 + ip address 10.0.0.2 255.0.0.0 + no shutdown + + +