« 处理 X-Forwarded-For 的 php 代码 | Main | 判断 IP 的 javascript 代码 »
October 12, 2006
批量设置 IP 的 shell 代码
版权声明:可以任意转载,转载时请务必以超链接形式标明文章原始出处和作者信息及本声明。 https://windtear.net/archives/2006/10/12/001110.html http://windtear.net/archives/2006/10/12/001110.html 批量设置 IP 的 shell 代码 for i in `seq 1 9` do let "a = 100 + $i" ifconfig eth0:$i 192.168.1.$a netmask 255.255.255.0 up done 周一(9号)帮别人做的 这里用了 ifconfig 也可用 ip 命令设置 其中 let "a = 100 + $i" 也可写为 ((a = 100 + $i)) |
Posted by windtear at October 12, 2006 10:52 PM