FREEBSD服务器端的ARP绑定脚本
FREEBSD服务器端的ARP绑定脚本
发布时间:2016-12-27 来源:查字典编辑
摘要:#!/bin/sh_PATH="/home/shwb"if[-s$_PATH/md5]&&[-s$_PATH/arp.txt];thenne...

#!/bin/sh

_PATH="/home/shwb"

if [ -s $_PATH/md5 ] && [ -s $_PATH/arp.txt ] ; then

new=`md5 $_PATH/arp.txt | cut -d ' ' -f 4`

old=`cat $_PATH/md5`

if [ "$new" != "$old" ] ; then

arp -a -d

arp -f $_PATH/arp.txt

date "+DATE: %Y-%m-%d-%H:%M:%S" >>/var/log/arp.log

md5 $_PATH/arp.txt | cut -d ' ' -f 4 >$_PATH/md5

fi

elif [ -s $_PATH/arp.txt ] ; then

arp -a -d

arp -f $_PATH/arp.txt

date "+DATE: %Y-%m-%d-%H:%M:%S" >>/var/log/arp.log

md5 $_PATH/arp.txt | cut -d ' ' -f 4 >$_PATH/md5

fi 注arp.txt文件格式为ip mac,如: 192.168.1.1 00:00:00:00:00:00 配合ftp就可以实现远程动态修改服务器的静态MAC表了

FREEBSD服务器端的ARP绑定脚本1

文件: arp.tar.gz
大小: 0KB
下载: 下载

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Unix/BSD学习
热门Unix/BSD学习
操作系统子分类