This commit is contained in:
2024-10-13 23:32:58 +02:00
parent 30627b25b3
commit dbfba56f66
38 changed files with 3897 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
!!!!!!!!!
! Core Switch
INTNAMEC=
VLAN=
conf t
default int $INTNAMEC
!
int $INTNAMEC
shutdown
switchport access vlan $VLAN
switchport trunk encapsulation dot1q
switchport mode access
spanning-tree bpduguard enable
spanning-tree guard root
!
!
!
int $INTNAMEC
no shutdown
!!!!!!!!!
! Access
INTNAMEA=
conf t
default int $INTNAMEA
!
int $INTNAMEA
shutdown
switchport access vlan $VLAN
switchport trunk encapsulation dot1q
switchport mode access
spanning-tree bpdufilter enable
!
!
!
int $INTNAMEA
no shutdown
int vlan $VLAN
ip address ....