Loop Redirection?

#1
I am a newbie with the li9nux networking. I saw this error in my log

Error [209.17.28.176:3107-0] detect loop redirection.

What does this mean? And is it reason to suspect hacker activity?

Thanx for any info.
 
#2
I notice the port number. That port is being blocked by two firewalls. Why would there be activity on that port. I dont get it. Please let me know any info on the error. Thanx much
 
#3
Just noticed theses. same ip address

2005-02-22 20:40:14.866 INFO [209.17.28.176:3107-0] Connection idle time: 301 while in state: 5 watching for event: 24,close!

2005-02-22 20:40:14.888 INFO [209.17.28.176:3107-0] Content len: 1019, Request line:pOST /checkout_process.php HTTP/1.1

2005-02-22 20:40:14.888 INFO [209.17.28.176:3107-0] HttpExtConnector state: 8, request body sent: 1019, response body size: 0, response body sent:0, left in buffer: 0, attempts: 0.

2005-02-22 20:40:14.888 INFO [209.17.28.176:3107-0] FcgiConnection watching event: 25, wantWrite: 0, total Pending: 0, buffered: 0, record status: 0, size:0, content len: 8, request processed: 178, total processing time: 301, waiting for response for 301 seconds.
 

mistwang

LiteSpeed Staff
#4
Da-Idiot said:
I am a newbie with the li9nux networking. I saw this error in my log

Error [209.17.28.176:3107-0] detect loop redirection.

What does this mean? And is it reason to suspect hacker activity?

Thanx for any info.
It because one script send a redirect to itself.
 

mistwang

LiteSpeed Staff
#5
Da-Idiot said:
I notice the port number. That port is being blocked by two firewalls. Why would there be activity on that port. I dont get it. Please let me know any info on the error. Thanx much
That's remote address, where the request comes from. don't worry.
 

mistwang

LiteSpeed Staff
#6
Da-Idiot said:
Just noticed theses. same ip address

2005-02-22 20:40:14.866 INFO [209.17.28.176:3107-0] Connection idle time: 301 while in state: 5 watching for event: 24,close!

2005-02-22 20:40:14.888 INFO [209.17.28.176:3107-0] Content len: 1019, Request line:pOST /checkout_process.php HTTP/1.1

2005-02-22 20:40:14.888 INFO [209.17.28.176:3107-0] HttpExtConnector state: 8, request body sent: 1019, response body size: 0, response body sent:0, left in buffer: 0, attempts: 0.

2005-02-22 20:40:14.888 INFO [209.17.28.176:3107-0] FcgiConnection watching event: 25, wantWrite: 0, total Pending: 0, buffered: 0, record status: 0, size:0, content len: 8, request processed: 178, total processing time: 301, waiting for response for 301 seconds.
Looks like the /checkout_process.php take more than 5 minutes to process and request is timed out, is it normal? There might be MySQL dead lock. you should turn off MySQL persistent connection. check your php.ini , default one is in lsws/conf/php.ini
 
#7
Ok I have turned off persistent connections for mysql. Also turned off in my script.

Hopefully this will help clear the checkout problems also.

Thanx for all the info
 
Top