Scanning for IP addresses
Posted: Thu May 06, 2004 7:55 pm
Is there a quick and easy way to check on Ip address works? I've tried using opennetworkconnection(ect,ect) but it takes forever to come back with a null result, and with 250 possibilties to run through it just takes too much time:
(plus all the relevent if's - but I can't be bothered to type them, I do know that they work with a fixed Ip though.)
I've also tried using examineipaddresses() but it didnt seem to work either.
Another question:
Can you run a program that's hosted on your webspace with runprogram() and create a server there using createnetworkserver()? It would slove this entire problem if you can.
Thanks.
(Posted in the right forum this time)
Code: Select all
ip$="???.???.???."
for t=1 250
new$=ip$+str(t)
dia=opennetworkconnection(new$,6000)
next t
I've also tried using examineipaddresses() but it didnt seem to work either.
Another question:
Can you run a program that's hosted on your webspace with runprogram() and create a server there using createnetworkserver()? It would slove this entire problem if you can.
Thanks.
(Posted in the right forum this time)