#!/bin/sh I=1 while [ $I -le 254 ] do arp -d 192.168.1.${I} arp -s 192.168.1.${I} 0:0:0:0:0:0 I=`expr $I + 1` done arp -f /etc/ethers.local