• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    防止ARP攻击的shell代码
    复制代码 代码如下:

    #!/bin/bash
    declare gw=`route -n | grep -e '^0.0.0.0'`
    declare gwname=`echo $gw | grep -oe '\w*$'`
    declare gwip=`echo $gw | grep -oe '[0-9]\{2,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}'`
    declare gwmac=`arp -n | grep -e $gwip | grep -oe '[0-9A-F]\{2\}:[0-9A-F]\{2\}:[0-9A-F]\{2\}:[0-9A-
    F]\{2\}:[0-9A-F]\{2\}:[0-9A-F]\{2\}'`
    echo "switch $gwname arp: $gwip - $gwmac to static"
    arp -s $gwip $gwmac
    echo "done, off arp reuqest .."
    ifconfig $gwname -arp
    echo "all done."


    解决linux下ARP攻击的方法

    Windows下的用户可以使用antiArp防火墙,基本上能解决问题,可是喜欢linux的兄弟姐妹们怎么办呢,我今天就遇到这个档子烦心事。
    我用的是fedora core 6,我先把几个镜像文件挂上,用关键字arp一搜,就搜到了arptables,和arpwatcher 首先是arpwatcher了,它好像只能监控本机ip/arp地址的改变之类的,好像不能防止arp攻击。 再一看arptables,立马想到了iptables,装上一看,果然,命令行都一模一样。 可是问题来了,保持本机不受arp攻击很简单(用静态arp绑定就可以了),但是人家网关也还是要受到攻击, 俺们又不是网络管理员,网关我只能 “远观而不能亵玩“!
    此路不通,俺们改道,arping这个东西映入我的眼帘,回到shell,发现已经安装拉:
    “arping - send ARP REQUEST to a neighbour host“arping [ -AbDfhqUV] [ -c count] [ -w deadline] [ -s source] -I interface destination-U Unsolicited ARP mode to update neighbours' ARP caches. No replies are expected.
    关键命令:
    arping -U -I 发送包的网卡接口 -s 源ip 目的ip
    实例:
    假设你的eth0接口对应的ip为192.168.1.1,网关为192.168.1.255你就可以使用
    arping -U -I eth0 -s 192.168.1.1 192.168.1.255
    您可能感兴趣的文章:
    • Linux系统防CC攻击自动拉黑IP增强版(Shell脚本)
    • 一个简单的防CC攻击Shell脚本分享
    • 利用Shell 脚本解决DDOS攻击问题
    上一篇:ubuntu与centos中更换ip的shell代码
    下一篇:linux bash字符串处理大全
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    防止ARP攻击的shell代码 防止,ARP,攻击,的,shell,代码,