Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
rpi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ISC2
rpi
Commits
da0ad334
Commit
da0ad334
authored
1 year ago
by
iliya
Browse files
Options
Downloads
Patches
Plain Diff
feat: part 1 fully done
parent
c278c06a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
content/03_vlan_hopping.md
+30
-0
30 additions, 0 deletions
content/03_vlan_hopping.md
with
30 additions
and
0 deletions
content/03_vlan_hopping.md
+
30
−
0
View file @
da0ad334
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment