home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Spezial / SPEZIAL2_97.zip / SPEZIAL2_97.iso / ANWEND / ONLINE / IJB20OS2 / SFORWARD.TXT < prev    next >
Text File  |  1997-09-16  |  3KB  |  78 lines

  1. #    Forwarding specification for Internet Junkbuster 2.0
  2. #
  3. # Copyright 1997 Junkbusters Corporation.  For distribution, modification and
  4. # use under the GNU General Public License. These files come with NO WARRANTY.
  5. # See http://www.junkbusters.com/ht/en/gpl.html or the README file for details.
  6. #
  7. # This feature allows routing of HTTP requests via multiple proxies.
  8. # It can be used to better protect privacy and confidentiality when
  9. # accessing specific domains by routing requests to those domains
  10. # to a special purpose filtering proxy such as lpwa.com
  11. #
  12. # It can also be used in an environmnent with multiple networks to route
  13. # requests via multiple gateways allowing transparent access to multiple
  14. # networks without having to modify browser configurations.
  15. #
  16. # Also specified here are special gateway protocols such as SOCKS.
  17.  
  18. # The syntax of each line is
  19. #
  20. # target_domain[:port][/path]    forwarding_domain[:port]    gateway_type    gateway_domain[:port]
  21. #
  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.  
  35. # In this fictitious example, everything goes via an ISP's caching proxy,
  36. # except requests to that ISP
  37. #
  38. # *        caching.myisp.net:8000    .    .
  39. # myisp.net    .            .    .
  40.  
  41. # In this example direct connections are made to all "internal" domains,
  42. # but everything else goes through Lucent's LPWA by way of the company's
  43. # SOCKS gateway to the Internet.
  44. #
  45. # *            lpwa.com:8000    socks    argyle.my_company.com:1080
  46. # my_company.com    .        .    .
  47.  
  48. # This is how you could set up a site that always uses SOCKS but no forwarders
  49. #
  50. # *            .        socks    knee.my_company.com:1080
  51.  
  52. # An advanced example for network administrators.
  53. #
  54. # If you're in a situation where you have links to multiple
  55. # ISP's that provide various special content to their subscribers
  56. # you can configure forwarding to pass requests to the specific
  57. # host that's connected to that ISP so that everybody can see
  58. # all of the content on all of the ISP's.
  59. # (whew!  how's that for a run-on sentence?)
  60. #
  61. # This is tricky, but here's a sample:
  62. # host-a has a PPP connection to isp-a.com
  63. # host-b has a PPP connection to isp-b.com
  64.  
  65. # host-a can run an Internet Junkbusters with forwarding like this:
  66. #
  67. # /        .        .    .
  68. # isp-b.com    host-b:8000    .    .
  69. #
  70. # host-b can run an Internet Junkbusters with forwarding like this:
  71. # /        .        .    .
  72. # isp-a.com    host-a:8000    .    .
  73. #
  74. # Now, *anyone* on the Internet (including users on host-a and host-b)
  75. # can set their browser's proxy to *either* host-a or host-b and
  76. # be able to browse the content on isp-a or isp-b.
  77.