#!/bin/bash
for M in `awk '{print $0} filetxt'`
do
ping $M -c 1
done
PS:filetxt中放着你想扫描的网段ip地址我没配过dhcp,我想问一下,我写这个脚本的时候,这个host我是一台机器
都必须要定义一个host
还是把这个绑定信息全写在一个host里?host后边跟着的命名,是自定义的,还是必须针对对方的主机名字?
host station10 {
hardware ethernet 00:00:00:00:00:00
fixed-address 19216881
}
#!/bin/bash
read -p "Please Input HOSTNAME:" name
read -p "Please Input MAC:" mac
read -p "Please input IP:" ip
cat >>/etc/dhcpdconf<<EOF
host $name {
hardware ethernet $mac
fixed-address $ip
}
评论列表(0条)