Apache mod_proxy +DNS slow response problem


 
Thread Tools Search this Thread
Special Forums IP Networking Apache mod_proxy +DNS slow response problem
# 1  
Old 05-21-2008
Apache mod_proxy +DNS slow response problem

My company has a private network, including a Apache web server (Linux) and some WinXP machines. The web server had been configured to use mod_proxy to connect to window update site via another company proxy server. It works for few years.

Recently, some parties had setup a DNS server on the Linux box. After that, the winupdate performance is much slower than before (5 times slower). I suspect that the Apache resolves the microsoft domain thought the local DNS server but not by the company proxy server.

How can I check this? Thanks.

Here is the httpd.conf config:

Code:
ProxyRequests On
ProxyVia On

ProxyRemote ftp://company.com/ ftp://company.com
ProxyRemote * http://proxy.company.com:8080
NoProxy intranet.company.com 10.x.x.x/24

<Directory proxy:*>
Order deny,allow
Deny from all
Allow from none
</Directory>

<Directory proxy:*.microsoft.com/*>
Order deny,allow
Deny from none
Allow from all
</Directory>

<Directory proxy:*windowsupdate.microsoft.com*>
Order deny,allow
Deny from none
Allow from all
</Directory>

<Directory proxy:*update.microsoft.com*>
Order deny,allow
Deny from none
Allow from all
</Directory>

....
....

# 2  
Old 05-21-2008
If you can reproduce the behavior at the command prompt, you can use various dig options etc to get DNS debugging info, such as which server responded and how long it took.
# 3  
Old 05-23-2008
I observe that the proxy is missing in the DNS lookup.
Waits for time-out and lookup the hosts table...
I'd called the party to add the proxy server into lcoal DNS and all right now.

Thanks for your help. era Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Web Development

Apache Mod_Proxy with failover

I have the following setup in my apache vhost: ProxyPass /abc http://www.newest.com/ ProxyPassReverse /abc http://www.newest.com/ I want to setup a failover approach in which if after a particular timeout say 10secs the load shifts to some other website like Refer.com | The world. The timeout... (0 Replies)
Discussion started by: ankur328
0 Replies

2. Solaris

slow response on solaris terminal

Solaris terminal responding very slow .. we have recently put a T3 hardware in to production , the applications running are it are perfectly and no complaints from user ..but when i ssh to the server ... the terminal response is very very slow .. it takes 3 seconds to show the character i type ..... (3 Replies)
Discussion started by: skamal4u
3 Replies

3. IP Networking

dns problem in apache

Hi, I am running scientific linux (which is clone of red hat linux) on virtual machine that is virtual box. I tried to start the apache but I got the following message. starting httpd: httpd: arp_sockaddr_info_get() failed for scientific-linux httpd: could not reliably determine the... (2 Replies)
Discussion started by: programAngel
2 Replies

4. Post Here to Contact Site Administrators and Moderators

Slow response from website

Hi, I am experiencing slow response of unix.com from past 3-4 days. like- - most of the time the page does not reload instantly (when I do a manual reload from browser) - not able to view graphics. ( displays only text). - when posting into forum, the page gets stuck for considerably long... (6 Replies)
Discussion started by: clx
6 Replies

5. AIX

Slow FTP response on WAN

Hi All. We are using AIX 5.3 ML9. There is 1 Gig NIC installed on two servers (Primary and Secondary) with Full Duplex Mode. We have scheduled a cronjob to copy the backup from primary to secondary thru FTP on WAN. The total data size is 15 GB and it took 9 Hours and 18 Mins with transfer rate... (6 Replies)
Discussion started by: lodhi1978
6 Replies

6. Emergency UNIX and Linux Support

Urgent help - intermittent slow response with client

Hi, My application runs on AIX, and clients complain of 3am slowdowns. This seems to have increased in the recent past. Can someone guide me what are the various things that I need to be looking at on he AIX box, that could be causing slowdowns. Thanks in Advance. (4 Replies)
Discussion started by: ggayathri
4 Replies

7. UNIX and Linux Applications

Apache problem: mod_deflate with mod_proxy

I am using Apache 2.2.3 on RHEL5 and having problems to get mod_deflate work with mod_proxy. mod_deflate will compress files by mime-type just fine as long as those files are served statically from the local server. However, files served via dynamic php application (ie, MediaWiki) or via... (2 Replies)
Discussion started by: otheus
2 Replies

8. UNIX for Advanced & Expert Users

Double question: Apache mod_proxy and force connection over specific interface

Double question here ... Running on Debian Etch and Apache 2.0 1) Using mod_proxy and/or mod_proxy_http in apache 2.0. The basics of using mod_proxy are pretty simple so long as you're using a static config. I'm trying to figure out how to do it dynamically - that is, allow the entry of a... (4 Replies)
Discussion started by: Halfwalker
4 Replies

9. SCO

Slow cd response

Hi All We have one SCO Server here and it never gives us any trouble. Until Now!! Well its not earth shattering but we have one user who is complaining of a very slow response time when changing to his Home Directory. Other users who have similar profiles are OK. I have su'd to this user and I can... (0 Replies)
Discussion started by: JohnOB
0 Replies

10. UNIX for Advanced & Expert Users

ls -l : response time slow

Hi all, If I give ls , it lists files in 1 second. It I give ls -l , it takes 8 seconds There are only 55 files in the directory. Any explanation? Thanks Wilson (4 Replies)
Discussion started by: geraldwilson
4 Replies
Login or Register to Ask a Question