Безопасность на порту коммутатора — различия между версиями

Материал из wiki
Перейти к: навигация, поиск
Строка 1: Строка 1:
 +
=Безопасность IPv4 на порту коммутатора=
 +
==Настройки==
 +
<code>
 +
no cdp en
 +
switchport protected    ! block all traffic to other protected ports
 +
switchport block multicast
 +
switchport block unicast ! блокирует флуд неизв маков (броадкаст остается)
 +
switchport port-security  ! не дает на других секурити портах такому маку светиться
 +
switchport port-security aging time 3
 +
switchport port-security violation restrict  ! protect(drop)  restrict(drop+syslog) shutdown(err-disable)
 +
switchport port-security aging type inactivity
 +
switchport port-security mac-address sticky    ! не дает на других секурити портах такому маку светиться
 +
spanning-tree bpdufilter enable  ! still send few bpdus on port-up
 +
spanning-tree bpduguard enable  ! err-disable if bpdu received
 +
spanning-tree rootguard enable  ! err-disable on root-bpdu
 +
ip verify source port-security ! проверять сорс мак адрес ip по порт-секьюрити
 +
 +
storm-control unicast level 87 65
 +
storm-control multicast level 87 65
 +
storm-control broadcast level 87 65
 +
</code>
 +
==Пример==
 
<pre>
 
<pre>
-2014 target ------------
+
!
 +
ip dhcp snooping vlan 88
 +
ip dhcp snooping verify mac-address ! - default
 +
no ip dhcp snooping information option ! - чтобы вышестоящай свитч не дропнул наш запрос с опцией 82
 +
ip dhcp snooping
 +
!
 +
!
 
ip arp inspection vlan 88
 
ip arp inspection vlan 88
ip arp inspection validate src-mac ip
+
ip arp inspection validate src-mac ip  
 +
!
 +
!
 +
errdisable recovery cause bpduguard
 +
errdisable recovery cause arp-inspection
 +
errdisable recovery cause loopback
 +
errdisable recovery interval 30
 +
errdisable detect cause all
 +
!
 +
spanning-tree mode rapid-pvst
 
!
 
!
 
!
 
!
ip dhcp snooping vlan 88
 
ip dhcp snooping
 
 
!
 
!
interface range FastEthernet0/1-24
+
interface range FastEthernet0/1 - 48
  switchport nonegotiate            !  do not send DTP
+
  switchport mode access
  switchport port-security maximum 2
+
  switchport access vlan 88
  switchport port-security
+
  spanning-tree portfast
storm-control broadcast level 20.00
 
no cdp enable
 
 
  spanning-tree bpduguard enable
 
  spanning-tree bpduguard enable
  ip verify source port-security
+
spanning-tree bpdufilter enable
end
+
spanning-tree link-type point-to-point
 +
  ip verify source
 +
no ip dhcp snooping trust
 +
no ip arp inspection trust
 +
!
 +
!
 +
int Gi0/1
 +
descr UPLINK
 +
ip dhcp snooping trust
 +
ip arp inspectin trust
 +
!
  
 
</pre>
 
</pre>

Версия 03:58, 9 марта 2016

Безопасность IPv4 на порту коммутатора

Настройки

no cdp en
switchport protected    ! block all traffic to other protected ports
switchport block multicast
switchport block unicast ! блокирует флуд неизв маков (броадкаст остается)
switchport port-security  ! не дает на других секурити портах такому маку светиться
switchport port-security aging time 3
switchport port-security violation restrict  ! protect(drop)  restrict(drop+syslog) shutdown(err-disable)
switchport port-security aging type inactivity
switchport port-security mac-address sticky    ! не дает на других секурити портах такому маку светиться
spanning-tree bpdufilter enable  ! still send few bpdus on port-up
spanning-tree bpduguard enable   ! err-disable if bpdu received
spanning-tree rootguard enable  ! err-disable on root-bpdu
ip verify source port-security ! проверять сорс мак адрес ip по порт-секьюрити

storm-control unicast level 87 65
storm-control multicast level 87 65
storm-control broadcast level 87 65

Пример

!
ip dhcp snooping vlan 88
ip dhcp snooping verify mac-address ! - default
no ip dhcp snooping information option ! - чтобы вышестоящай свитч не дропнул наш запрос с опцией 82
ip dhcp snooping
!
!
ip arp inspection vlan 88
ip arp inspection validate src-mac ip 
!
!
errdisable recovery cause bpduguard
errdisable recovery cause arp-inspection
errdisable recovery cause loopback
errdisable recovery interval 30
errdisable detect cause all
!
spanning-tree mode rapid-pvst
!
!
!
interface range FastEthernet0/1 - 48
 switchport mode access
 switchport access vlan 88
 spanning-tree portfast
 spanning-tree bpduguard enable
 spanning-tree bpdufilter enable
 spanning-tree link-type point-to-point
 ip verify source
 no ip dhcp snooping trust
 no ip arp inspection trust
!
!
int Gi0/1
 descr UPLINK
 ip dhcp snooping trust
 ip arp inspectin trust
!