Difference between proxy server and reverse proxy server

代理服务器和反向代理服务器有什么区别?


The previous answers were accurate, but perhaps too terse. I will try to add some examples.

First of all, the word "proxy" describes someone or something acting on behalf of someone else.

In the computer realm, we are talking about one server acting on the behalf of another computer.

For the purposes of accessibility, I will limit my discussion to web proxies - however, the idea of a proxy is not limited to web sites.

FORWARD proxy

Most discussion of web proxies refers to the type of proxy known as a "forward proxy."

The proxy event in this case is that the "forward proxy" retrieves data from another web site on behalf of the original requestee.

A tale of 3 computers (part I)

For an example, I will list three computers connected to the internet.

  • X = your computer, or "client" computer on the internet
  • Y = the proxy web site, proxy.example.org
  • Z = the web site you want to visit, www.example.net
  • Normally, one would connect directly from X --> Z.

    However, in some scenarios, it is better for Y --> Z on behalf of X , which chains as follows: X --> Y --> Z .

    Reasons why X would want to use a forward proxy server:

    Here is a (very) partial list of uses of a forward proxy server.

  • 1) X is unable to access Z directly because

  • a) Someone with administration authority over X 's internet connection has decided to block all access to site Z .

  • Examples:

  • The Storm Worm virus is spreading by tricking people into visiting familypostcards2008.com , so the system administrator has blocked access to the site to prevent users from inadvertently infecting themselves.

  • Employees at a large company have been wasting too much time on facebook.com , so management wants access blocked during business hours.

  • A local elementary school disallows internet access to the playboy.com web site.

  • A government is unable to control the publishing of news, so it controls access to news instead, by blocking sites such as wikipedia.org . See TOR or FreeNet.

  • b) The administrator of Z has blocked X .

  • Examples:

  • The administrator of Z has noticed hacking attempts coming from X, so the administrator has decided to block X's ip address (and/or netrange).

  • Z is a forum web site. X is spamming the forum. Z blocks X.

  • REVERSE proxy

    A tale of 3 computers (part II)

    For this example, I will list three computers connected to the internet.

  • X = your computer, or "client" computer on the internet
  • Y = the reverse proxy web site, proxy.example.com
  • Z = the web site you want to visit, www.example.net
  • Normally, one would connect directly from X --> Z.

    However, in some scenarios, it is better for the administrator of Z to restrict or disallow direct access, and force visitors to go through Y first. So, as before, we have data being retrieved by Y --> Z on behalf of X , which chains as follows: X --> Y --> Z .

    What is different this time compared to a "forward proxy," is that this time the user X does not know he is accessing Z, because the user X only sees he is communicating with Y . The server Z is invisible to clients and only the reverse proxy Y is visible externally. A reverse proxy requires no (proxy) configuration on the client side.

    The client X thinks he is only communicating with Y ( X --> Y ), but the reality is that Y forwarding all communication ( X --> Y --> Z again).

    Reasons why Z would want to set up a reverse proxy server:

  • 1) Z wants to force all traffic to its web site to pass through Y first.
  • a) Z has a large web site that millions of people want to see, but a single web server cannot handle all the traffic. So Z sets up many servers, and puts a reverse proxy on the internet that will send users to the server closest to them when they try to visit Z. This is part of how the Content Distribution Network (CDN) concept works.
  • Examples:
  • Apple Trailers uses Akamai
  • Jquery.com hosts its javascript files using CloudFront CDN (sample).
  • etc.
  • 2) The administrator of Z is worried about retaliation for content hosted on the server and does not want to expose the main server directly to the public.
  • a) Owners of Spam brands such as "Canadian Pharmacy" appear to have thousands of servers, while in reality having most websites hosted on far fewer servers. Additionally, abuse complaints about the spam will only shut down the public servers, not the main server.
  • In the above scenarios, Z has the ability to choose Y .

    Links to topics from the post:

    Content Delivery Network

  • Lists of CDNs
  • http://www.mytestbox.com/miscellaneous/content-delivery-networks-cdn-list/
  • http://blog.streamingmedia.com/the_business_of_online_vi/2008/01/updated-list-of.html
  • forward proxy software (server side)

  • cgi-proxy
  • phproxy (discontinued)
  • glype
  • Internet censorship wiki: List of Web Proxies
  • squid (apparently, can also work as a reverse proxy)
  • reverse proxy software for HTTP (server side)

  • apache mod_proxy (can also work as a forward proxy for HTTP)
  • nginx (used on hulu.com, spam sites, etc.)
  • HAProxy
  • lighthttpd
  • perlbal (written for livejournal)
  • portfusion
  • pound
  • varnish cache (written by a freebsd kernel guru)
  • repose
  • reverse proxy software for TCP (server side)

  • balance
  • delegate
  • pen
  • portfusion
  • pure load balancer (web site defunct)
  • python director
  • see also:

  • Wikipedia - Content Delivery Network
  • Wikipedia - Category:Reverse_proxy
  • Wikipedia - Load Balancing
  • Wikipedia - Scalability

  • A pair of simple definition would be

    Forward Proxy: Acting on behalf of a requestor (or service consumer)

    Reverse Proxy: Acting on behalf of service/content producer.


    I found this diagram to be very helpful. It just shows the architecture of a forward vs reverse proxy setup from client to server over the Internet. This image will help you to understand qyb2zm302's post and other posts better.

    转发代理与反向代理

    You can also watch this video from F5 's DevCentral by Peter Silva.

    Picture Source: Quora. All credits to the person who created this diagram.

    It reminded me of the classic proverb:

    A picture is worth 1000 words.

    链接地址: http://www.djcxy.com/p/2850.html

    上一篇: 为什么Chrome和Firefox处理jQuery ajax()回调中的javascript变量集的方式不同?

    下一篇: 代理服务器和反向代理服务器之间的区别