× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.




Is it really though Bob?  If I look at my logs that is the period of time
when I get most DOS and other similar hack attacks.  Is it possible that
some attempt at a buffer over-run exploit or something is triggering it?

Sounds more like a SYN flood than a buffer overrun!

To establish a TCP connection, a client computer sends a SYN (Synchronize) packet to the server. This tells the server that a new connection is coming, so it sends back a SYN/ACK (Synch Acknowledge) packet and the accept() API creates a new socket descriptor for the connection.

A SYN flood is where someone writes a program that generates lots of SYN packets from fake IP addresses and sends them as fast as possible to a server. This causes the server to think that lots of simultaneous connection attempts are coming in, and it'll open up descriptors and send back SYN/ACK packets.

Eventually, they time out and the descriptors close, but if you send the SYN packets fast enough, the server won't be able to recover and will run out of descriptors. That's what the "Too many files open" message means -- that you've run out of descriptors.

IBM could fix the problem by modifying the TCP/IP stack to be more careful in uses as few resources as possible until the complete session is set up, or they could drop SYN packets when they come in faster than a certain rate, there's lots of different strategies.

More info on SYN flooding can be found here:
http://www.cert.org/advisories/CA-1996-21.html

I don't know for sure that this is what's happening, it's just a guess on my part.

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.