Proxy Servers
Proxy servers sit between the client and the serverProxy Servers (Caching)
Proxy servers hide the IP of the actual clientCaching proxy servers speed up access to websites by caching frequently accessed pages locally (on proxy server)
Proxy Servers (Reverse)
Reverse proxy servers hide the IP of the actual serverUsing Proxy Servers
BrowserEdit | Preferences | Connection | ...
curl proxy (set environment variable BEFORE running curl)
$ http_proxy=proxy.ri:8080 curl -i http://www.osde.info
curl proxy (using command line switch)
$ curl -x proxy.ri:8080 -i http://www.osde.info
wget proxy (set environment variable BEFORE running wget)
$ http_proxy=proxy.ri:8080 wget -S "http://www.osde.info/"
There are no comments on this page. [Add comment]