Skip to content
Snippets Groups Projects
Commit 676b258c authored by Al Massati Bilal's avatar Al Massati Bilal
Browse files

procedure V1

parent 09577068
No related branches found
No related tags found
No related merge requests found
# 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment