#!/bin/bash

for cc in `seq -w 1 1000`; do 
	wget -O /dev/null -w1 http://192.168.1.1/$cc; 
	sleep 0.1; 
done;
