多平台统一管理软件接口,如何实现多平台统一管理软件接口
256
2022-09-11
局域网网络安全(局域网网络安全如何管)
背景:
利用交换机保障网络安全局域网内部,面临着两个风险,计算机病毒的扩散和内部人员的恶意。内网安全可以防止mac泛洪,dhcp欺骗,arp中间人,ip源地址欺骗,避免合法用户的数据被中间人窃取。
目的:
1 配置交换机端口安全,通过端口限制学习到的mac地址数量,限制了mac地址泛洪;2 配置交换机dhcp snooping,通过设置LSW1上联口4口味trust口后才转发dhcp报文;3 配置交换机的动态arp检测功能,使LSW1对收到的arp报文对应的sip,smac,vlan以及接口信息进行dhcp snoop绑定表匹配检查,防止中间人4 配置交换机的ip源防护功能,使LSW1对收到的ip报文进行sip,smac,vlan以及接口信息进行dhcp snooping绑定表项匹配检查,防止源ip地址欺骗***。
配置命令:
1、 LSW1上配置端口安全
interface GigabitEthernet0/0/1 port-security enable //开启端口安全 port-security max-mac-num 1 //学习最大mac地址数是1 port-security protect-action restrict //当超过mac地址的数量,丢弃源mac地址并上报警告。 interface GigabitEthernet0/0/2 port-security enable port-security max-mac-num 1 port-security protect-action restrict interface GigabitEthernet0/0/3 port-security enable port-security max-mac-num 1 port-security protect-action restrict
2、配置dhcp snoopingLSW1:
dhcp enable dhcp snooping enable //全局开启dhcp snooping interface GigabitEthernet0/0/1 dhcp snooping enable interface GigabitEthernet0/0/2 dhcp snooping enable interface GigabitEthernet0/0/3 dhcp snooping enable interface GigabitEthernet0/0/4 //上联到dhcp服务器需要转发dhcp报文,默认untrust。 dhcp snooping enable dhcp snooping trust dis dhcp snooping configuration //查看dhcp snooping的配置
3、启用动态arp检测,防止arp中间人***LSW1:
interface GigabitEthernet0/0/1 arp anti-attack check user-bind enable arp anti-attack check user-bind check-item ip-address mac-address vlan interface GigabitEthernet0/0/2 arp anti-attack check user-bind enable arp anti-attack check user-bind check-item ip-address mac-address vlan interface GigabitEthernet0/0/3 arp anti-attack check user-bind enable arp anti-attack check user-bind check-item ip-address mac-address vlan
4、启用IP source guardLSW1:
interface GigabitEthernet0/0/1 ip source check user-bind enable ip source check user-bind check-item ip-address mac-address vlan interface GigabitEthernet0/0/2 ip source check user-bind enable ip source check user-bind check-item ip-address mac-address vlan interface GigabitEthernet0/0/3 ip source check user-bind enable ip source check user-bind check-item ip-address mac-address vlan
display ip source check user-bind interface g 0/0/1 //检查反IP欺骗配置
display arp anti-attack configuration check user-bind interface g0/0/1 //检查反arp欺骗配置
dis dhcp snooping user-bind all //查看dhcp snooping信息
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~