Skip to content
Snippets Groups Projects
Commit da0ad334 authored by iliya's avatar iliya
Browse files

feat: part 1 fully done

parent c278c06a
No related branches found
No related tags found
No related merge requests found
...@@ -164,6 +164,36 @@ de vlan 10 par la commande suivante : ...@@ -164,6 +164,36 @@ de vlan 10 par la commande suivante :
### Sécurisation des switches ### Sécurisation des switches
1. Sécurisez l’ensemble des ports des switches S1 et S2 de façon à ce qu’aucune
attaque ne puisse avoir lieu sur les ports restant des switchs qui
n’appartiennent pas au VLAN 10.
- `GigabitEthernet 0/2` de S1 :
```
Switch>en
Switch#conf t
Switch(config)#interface GigabitEthernet 0/2
Switch(config-if)#switchport mode access
Switch(config-if)#no shut
Switch(config-if)#end
```
- `GigabitEthernet 0/0` de S1 et S2:
```
Switch>en
Switch#conf t
Switch(config)#interface GigabitEthernet 0/0
Switch(config-if)#switchport trunk encapsulation dot1q
Switch(config-if)#switchport mode trunk
Switch(config-if)#switchport nonegotiate
Switch(config-if)#no shut
Switch(config-if)#end
```
## VLAN Hopping sur le VLAN natif ## VLAN Hopping sur le VLAN natif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment