sforward.ini
上传用户:qunlip
上传日期:2007-01-04
资源大小:203k
文件大小:4k
源码类别:

代理服务器

开发平台:

Visual C++

  1. # Forwarding specification for Internet Junkbuster 2.0
  2. #
  3. # Copyright 1997-8 Junkbusters Corp.  For distribution, modification and use
  4. # under the GNU General Public License. These files come with NO WARRANTY.
  5. # See http://www.junkbusters.com/ht/en/gpl.html or README file for details.
  6. # For this file to have any effect, the line beginning "forwardfile" must
  7. # be commented in, with the name of this file following the word "forwardfile"
  8. #
  9. # This feature allows routing of HTTP requests via multiple proxies.
  10. # It can be used to better protect privacy and confidentiality when
  11. # accessing specific domains by routing requests to those domains
  12. # to a special purpose filtering proxy such as lpwa.com
  13. #
  14. # It can also be used in an environment with multiple networks to route
  15. # requests via multiple gateways allowing transparent access to multiple
  16. # networks without having to modify browser configurations.
  17. #
  18. # Also specified here are special gateway protocols such as SOCKS.
  19. # The syntax of each line is
  20. #
  21. # target_domain[:port][/path] forwarding_domain[:port] gateway_type gateway_domain[:port]
  22. #
  23. # A '.' in the forwarding domain/port means that requests made to the
  24. # target domain are not forwarded but are made directly by the proxy
  25. # (though the proxy may still use a gateway to contact the server)
  26. #
  27. # Lines are checked in turn, and the last match wins.
  28. #
  29. # There is an implicit line equivalent to the following, which specifies that
  30. # anything not finding a match on the list is to go out without forwarding
  31. # or gateway protocol; like so:
  32. #
  33. # * . . . # implicit
  34. # In the following common configuration, everything goes to Lucent's LPWA,
  35. # except SSL on port 443 (which it doesn't handle)
  36. # * lpwa.com:8000 . .
  37. # :443 . . .
  38. # See the FAQ for instructions on how to automate the login procedure for LPWA.
  39. # Some users have reported difficulties related to LPWA's use of . as the
  40. # last element of the domain, and have said that this can be fixed with this:
  41. # lpwa.   lpwa.com:8000   .       .
  42. # In this fictitious example, everything goes via an ISP's caching proxy,
  43. # except requests to that ISP:
  44. #
  45. # * caching.myisp.net:8000 . .
  46. # myisp.net . . .
  47. # For the @home network, we're told the forwarding configuration is this:
  48. # *       proxy:8080      .       .
  49. # Also, we're told they insist on getting cookies and Javascript, so you need
  50. # to add home.com to the cookie file. We consider Javascript a security risk;
  51. # see our page on cookies. Java need not be enabled.
  52. # In this example direct connections are made to all "internal" domains,
  53. # but everything else goes through Lucent's LPWA by way of the company's
  54. # SOCKS gateway to the Internet.
  55. #
  56. # * lpwa.com:8000 socks argyle.my_company.com:1080
  57. # my_company.com . . .
  58. # This is how you could set up a site that always uses SOCKS but no forwarders
  59. #
  60. # * . socks knee.my_company.com:1080
  61. # An advanced example for network administrators.
  62. #
  63. # If you have links to multiple ISPs that provide various special
  64. #content to their subscribers, you can configure forwarding to pass
  65. # requests to the specific host that's connected to that ISP
  66. # so that everybody can see
  67. # all of the content on all of the ISPs.
  68. #
  69. # This is tricky, but here's a sample:
  70. # host-a has a PPP connection to isp-a.com
  71. # host-b has a PPP connection to isp-b.com
  72. # host-a can run an Internet Junkbuster proxy with forwarding like this:
  73. #
  74. # / . . .
  75. # isp-b.com host-b:8000 . .
  76. #
  77. # host-b can run an Internet Junkbuster proxy with forwarding like this:
  78. # / . . .
  79. # isp-a.com host-a:8000 . .
  80. #
  81. # Now, *anyone* on the Internet (including users on host-a and host-b)
  82. # can set their browser's proxy to *either* host-a or host-b and
  83. # be able to browse the content on isp-a or isp-b.