Device or program that stands between two or more interconnected programs/devices
Questions tagged [proxy]
3307 questions
1
vote
1 answer
Proxy arp and 1:1 NAT
I have a Linux router with 2 NICs doing masquerade from network 192.168.0.0/24 to an ADSL router.
users <----> NIC A [router] NIC B <----> INTERNET
Now I'm experimenting with proxy arp on the NIC A to intercept all the IP requests in the network.
I…

daniel4er
- 11
- 2
1
vote
2 answers
Raw TCP/IP port forwarding software
I have server which IP address is whitelisted in some external system. And also, I have a few software developers with dynamic IPs which develop software and they need to connect to external system, but their IPs are not whitelisted, and cannot be…

adontz
- 337
- 5
- 12
1
vote
1 answer
Changing 252 WPAD option on Windows DHCP server
I am replacing our old ISA server with a new server based on Forefront TMG.
On the DHCP server (Windows 2003) I can see that the DHCP Option 252 is pointing to the old address.
I have changed the predefined options for the server to make it point to…

er_tomas
- 103
- 4
- 9
1
vote
2 answers
Apache's reverse proxy stumping me with redirects
I have setting up a series of web apps, which for security purposes are only directly accessible via localhost, with each service attached to a different port. To make these apps externally accessible, a reverse proxy is being setup through apache.…

Zachary Yamada
- 11
- 2
1
vote
3 answers
Is there public proxy that allows edit its hosts file?
I my deployment enviroment I use local Hosts file to change domains destination to another server I use for development. It works nice and it's easy to setup. But as always there is a catch. If our client wants to see the dev site before its…

Marakoss
- 113
- 3
1
vote
1 answer
apache2 accidental open proxy restoration
I accidentally seem to have configured a more or less open http proxy with apache2 when I last messed around. Because I use apache2 for various (private) stuff I noticed it relatively fast... after a week when apache2 started to perform horribly…

annih
- 121
- 3
1
vote
2 answers
Using Zabbix to monitor a forward proxy server
I need to be notified when our proxy server goes down. Currently I have a bash script that tests the proxy functionality:
CHECKRESULT=(curl -s --proxy 4.83.58.205:80 checkip.dyndns.com | awk '{print $6}' | sed 's/<\/body><\/html>\r//g';)
if […

Antonius Bloch
- 4,680
- 6
- 29
- 41
1
vote
0 answers
Proxy Authentication Required .NET Application
Here's what I've got setup:
Windows Service Account with internet access
A .NET application which allows setting the proxy settings
Host
Port
Username
Password
When running this application the proxy server logs are showing that the credentials…

Jonathan Parker
- 131
- 2
- 8
1
vote
2 answers
Default web page for no proxy setup
do you think it is possible to configure the net firewall or proxy or the webserver to redirect every http request (not from proxy server) to a static web page that tells the user how to configure his browser with the correct proxy? I know i can…

Tobia
- 1,272
- 9
- 41
- 81
1
vote
0 answers
How can I get Pinax's OpenID to work with NAT?
I have a Pinax gunicorn deployment behind a NAT, where the outward-facing Apache server does a ReverseProxy to the gunicorn server. Overall it works well but when I try to log in with OpenID I get an error:
Proxy Error
The proxy server received an…

Christos Hayward
- 1,162
- 3
- 16
- 35
1
vote
1 answer
Apache ReverseProxy different paths
I would like to proxy specific URL paths to different internal ports:
example.com/transmission -> localhost:9091
example.com -> standard apache file server
I have the following in my apache conf file:
ProxyPass /transmission/…

mrwooster
- 243
- 3
- 7
1
vote
2 answers
Tomcat/JIRA redirects to HTTP when accessed by HTTPS through a Pound proxy
I'm trying to get a JIRA install to work behind a Pound proxy that is doing SSL termination/"acceleration". Unfortunately it seems that JIRA (Coyote) is redirecting to HTTPS when accessed:
C:\Users\Josh>openssl s_client -connect www:443
...
---
GET…

Josh
- 337
- 2
- 10
1
vote
1 answer
Squid domain block
i want lo block some porn domains, i tried this squid configuraztion:
acl localnet src 10.0.0.0/8
acl loggedUser proxy_auth REQUIRED
acl proxyUser external nt_group ProxyUser
acl pornDomains dstdomain "/etc/squid/porndomains.txt"
http_access…

Tobia
- 1,272
- 9
- 41
- 81
1
vote
1 answer
tomcat behind apache
i am trying to use the mod_proxy_ajp to forward all the request from tocat.example.com to example.com:8080
here is what the tomcat server.xml looks like:
and here is the apache.conf…

danny
- 121
- 4
1
vote
2 answers
Tunnel HTTP through HTTPS using Apache
Is it possible to have an HTTPS frontend for an HTTP server?
Let me elaborate. Say I have an app running on a tomcat instance and this app only understands HTTP. Is it possible to have Apache sit in front of the tomcat app and proxying the requests…

auser
- 121
- 4