Re: getting quick arp request

2006-09-07 Thread Ben Sizer
seb wrote: > I am not fully confident to apply the patch from > http://www.lvllord.de/?lang=en&url=downloads .on computers other than > mine. Fully understandable. > Is there another solution ? I believe it is possible to overwrite the .dll that SP2 gives you with the older one. Obviously you lo

Re: getting quick arp request

2006-09-07 Thread Daniel Nogradi
> 2) > Still without the above patch on windows, the software "angry ip scan" > for example managed to output a lot of more socket connection. How is > it possible ? This "angry ip scan" thing is written in Java, perhaps you can find it out from the source: http://svn.sourceforge.net/viewvc/ipsca

Re: getting quick arp request

2006-09-07 Thread seb
Thank you all for the reply, ** More tests : *** 1) I tried to input the D-word with the parameters and I did not see anychanged (checked with process explorer. The limit of the simultaneous connexion is always 10. 2) I have applied the patch from http://www.lvllord.de/?l

Re: getting quick arp request

2006-09-07 Thread Steve Holden
Richard Brodie wrote: > "Steve Holden" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > >>Is it relevant to point out that the ARP protocol is a connectionless >>network-layer >>protocol. > > > Not really, since the program uses normal TCP socket connections. > The feature i

Re: getting quick arp request

2006-09-07 Thread Richard Brodie
"Steve Holden" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Is it relevant to point out that the ARP protocol is a connectionless > network-layer > protocol. Not really, since the program uses normal TCP socket connections. The feature is working exactly as designed - to slow

Re: getting quick arp request

2006-09-07 Thread Steve Holden
Ben Sizer wrote: > kondal wrote: > >>>Something is limiting the TCP/IP connections from my python program at >>>10 maximum at the same time. >>>I do not see this limit in my code. >>>I did not bumped over the 4226 error. >>> >>>=> Where does this limit come from. >>>=> How can I overcome it. >> >>

Re: getting quick arp request

2006-09-07 Thread Ben Sizer
kondal wrote: > > Something is limiting the TCP/IP connections from my python program at > > 10 maximum at the same time. > > I do not see this limit in my code. > > I did not bumped over the 4226 error. > > > > => Where does this limit come from. > > => How can I overcome it. > > You can just edit

Re: getting quick arp request

2006-09-06 Thread kondal
> Something is limiting the TCP/IP connections from my python program at > 10 maximum at the same time. > I do not see this limit in my code. > I did not bumped over the 4226 error. > > => Where does this limit come from. > => How can I overcome it. You can just edit it by creating a new key in t

Re: getting quick arp request

2006-09-06 Thread seb
Hi Ben, I am indeed using XP SP2. - Some more info : - 1) I have checked on the event viewer and I have not seen the event 4226 while I have run the code sample above. 2) I can still see this error (4226) recently In the log so that I must have bu

Re: getting quick arp request

2006-09-06 Thread seb
Hi Ben, I am indeed using XP SP2. I have checked on the event viewer and I have not seen the event 4226. Besides I also run on the same PC angry Ip scanner 2.21. Checking using ethereal the arp request are all dispatched quit quickly (see my mail above). Thanks for the advice anyway. Sebastien.

Re: getting quick arp request

2006-09-06 Thread Ben Sizer
seb wrote: > I need to write a scanner that test all the IP adresses that repond on > a given port. ... > I am using winXP pro on a 2GHZ P4 and 512 Mo. If you have XP Service Pack 2, it cripples port-scanning as part of a 'security' fix. Broadly speaking, it limits the rate at which you can make c

getting quick arp request

2006-09-06 Thread seb
Hello, What I need : I need to write a scanner that test all the IP adresses that repond on a given port. The Ip list is of roughly of length 200. I need to get the response every 60 seconds (or better). I would prefer first not to use nmap. Co