#
# Simple csh script to add a bunch of aliases which
# hammer can use to simulate lots of different machines connecting.
#

set mick=1

while ($mick != 255)
  ifconfig de0 alias 10.0.1.$mick netmask 255.255.0.0
  ifconfig de0 alias 10.0.2.$mick netmask 255.255.0.0
  @ mick += 1
end

