I want to do work with my subnet here and I want to know how to do this, I am new to Perl and got the hang of FTP stuff in perl now but i want to do scans on whole subnet and need a way to basically do this algorithm
a = 255, b = 255, c = 255, d = 1;
while(d != 255)
do
connect->(a.b.c.d); // this being an IP address
d++;
done
How do I got about doing this???
a = 255, b = 255, c = 255, d = 1;
while(d != 255)
do
connect->(a.b.c.d); // this being an IP address
d++;
done
How do I got about doing this???