socks.conf
上传用户:zm130024
上传日期:2007-01-04
资源大小:432k
文件大小:3k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. # $Id: socks.conf,v 1.24 1999/07/10 13:52:25 karls Exp $
  2. #
  3. # A sample socks.conf
  4. # The configfile is divided into two parts; first misc. settings,
  5. # then the routes.  Objects in '[]' are optional.
  6. #
  7. #
  8. # recommended order is:
  9. # misc settings:
  10. # [debug]
  11. # [logoutput]
  12. # [resolveprotocol]
  13. #
  14. # routes:
  15. # route
  16. # from to via
  17. # [command]
  18. # [extension]
  19. # [protocol]
  20. # [proxyprotocol]
  21. #debug: 1           # uncomment to enable debugging
  22. #logoutput: stdout  # users usually don't want to be bothered with that.
  23. # What protocol should be used for resolving hostnames?  It's important
  24. # to set this right.
  25. #resolveprotocol: udp  # default
  26. #resolveprotocol: tcp  # set this if your socksserver only supports socksv4.
  27. #resolveprotocol: fake # set this if your clients can't access nameserver,
  28.   # neither directly nor proxied via socks.
  29. #
  30. # the routes
  31. #
  32. # if you don't route all local connections via direct, you should
  33. # at least route nameserver connections via direct connections if you
  34. # can.  That can make for much better performance, depending on
  35. # your setup.  Make sure the nameserver line is also the first.
  36. # Assuming your nameserver runs on address 10.1.1.1, you can do it like this:
  37. #route {
  38. # from: 0.0.0.0/0 to: 10.1.1.1/32 port = domain via: direct
  39. #}
  40. # have a route making all connections to loopback addresses be direct.
  41. #route {
  42. # from: 0.0.0.0/0   to: 127.0.0.0/8  via: direct
  43. # command: connect udpassociate # everything but bind, bind confuses us.
  44. #}
  45. # Our net is the 10.0.0.0/8 net, let clients going to local address go
  46. # direct, not via server.
  47. #route {
  48. # from: 0.0.0.0/0   to: 10.0.0.0/8   via: direct
  49. #}
  50. # for poor souls trapped behind a msproxy server.
  51. #route {
  52. # from: 0.0.0.0/0   to: 0.0.0.0/0   via: 10.1.1.1 port = 1745
  53. # protocol: tcp # server supports tcp
  54. # proxyprotocol: msproxy_v2        # server runs msproxy_v2
  55. #}
  56. # clients going anywhere else go via server listening at
  57. # ipaddress 10.1.1.1, port 1080.   Note that unless you have
  58. # specified a direct connection for dns, or the socksserver is resolvable
  59. # without network traffic, you can't give a hostname for the socksserver,
  60. # you must give a ip address.  (the reasons for that are logical enough,
  61. # you would create a loop otherwise.)
  62. #route {
  63. # from: 0.0.0.0/0   to: 0.0.0.0/0   via: 10.1.1.1 port = 1080
  64. # protocol: tcp udp                # server supports tcp and udp.
  65. # proxyprotocol: socks_v4 socks_v5 # server supports socks v4 and v5.
  66. # method: none #username # we are willing to authenticate via
  67. #  # method "none", not "username".
  68. #}
  69. # this is identical to the above, but it matches hostnames instead.
  70. # This is if you have clients that are unable to resolve hostnames.
  71. # It can be important that hostname routes come after address routes.
  72. #route {
  73. # from: 0.0.0.0/0   to: .   via: 10.1.1.1 port = 1080
  74. # protocol: tcp udp                # server supports tcp and udp.
  75. # proxyprotocol: socks_v4 socks_v5 # server supports socks v4 and v5.
  76. # method: none #username # we are willing to authenticate via
  77. #  # method "none", not "username".
  78. #}