multiple_server.example
上传用户:sddyfurun
上传日期:2007-01-04
资源大小:525k
文件大小:5k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. File Name: multiple_server.example 
  2. 1. Example - Multiple socks5 Servers with socks5 Username/Password
  3.              authentication
  4. # This example describes a socks5 environment on network 163.201.56., with:
  5. # - two socks5 servers: serverA:3000 and serverB:2000 using Username/Password
  6. #   Authentication
  7. # - one socks client, clientA using socks5 Username/Password authentication
  8. # This example assumes no special build option requirements.
  9. #
  10. # ClientA has two socks5 users: userA and userB
  11. #
  12. # userA and userB must use the socks5 serverA:3000 for all commands to 
  13. #   destination 163.201.56.12
  14. #
  15. # Both users use serverB:2000 for ping or traceroute commands to any 
  16. # destination on 163.201.56, except 163.201.56.12.
  17. #
  18. # Both users use serverA:3000 for any command to any destination, except
  19. # 163.201.56.12 on the 163.201.56 network.
  20. #
  21.                                  ---------
  22.                                 | serverB |
  23.                                 |         | 
  24.                                  ---------
  25.                                      |
  26.     ---------                 ---------------         ----------
  27.    | clientA |               | 163.201.56.   |       | serverA  |
  28.    |         |---------------|  Network      |-------|          |
  29.     ---------                 ---------------         ----------
  30.    userA: socks5 user           |          | 
  31.    mary:  unix user             |          |_____
  32.                                 |                | 
  33.                            -------------       -------------    
  34.    userB: socks5 user     | Destination |     | Destination | 
  35.    sam:   unix user       | any host on |     |163.201.56.12|
  36.                           | 163.201.56. |     |             |
  37.                            -------------       -------------
  38. 2. Server Environment Variables
  39. # You must tell the server where to find the configuration file. You can do so
  40. # in one of three ways:
  41. #  - Set the environment variable SOCKS5_CONFFILE
  42. #  - Include the socks5.conf file in the default directory, usually /etc
  43. #  - Build with the --with-srvconffile=path option
  44. # This example demonstrates using environment variables. The example path is 
  45. # arbitrary.
  46. #serverA:3000
  47. setenv SOCKS5_CONFFILE /socksdir/run/socks5.conf
  48. setenv SOCKS5_PWDFILE  /socksdir/run/socks5.passwd
  49. #serverB:2000
  50. setenv SOCKS5_CONFFILE /socksdir/run/socks5.conf
  51. setenv SOCKS5_PWDFILE  /socksdir/run/socks5.passwd
  52. 3. Server Configuration File socks5.conf
  53. # These are the socks5.conf files. The socks5.conf file must be in the 
  54. # directory specified in the SOCKS5_CONFFILE environment variable, or the 
  55. # default directory, usually /etc
  56. # In this example, the socks5.conf file is the same for both 
  57. # servers. The servers can share the configuration file, if both servers can 
  58. # access it.
  59. #serverA:3000   filename  /socksdir/run/socks5.conf
  60. auth 163.201.56. - u
  61. permit u - 163.201.56. 163.201.56. - - userA,userB
  62. #serverB:2000   filename  /socksdir/run/socks5.conf
  63. auth 163.201.56. - u
  64. permit u - 163.201.56. 163.201.56. - - userA,userB
  65. 4. Server socks5 Password File 
  66. # This is the socks5 Username/Password file. It should be in the directory
  67. # specified in the SOCKS5_PWDFILE environment variable, or the default 
  68. # directory, usually /etc
  69. #
  70. # To add more users, place each user on a new line with username and 
  71. # password separated by white space.
  72. userA passA
  73. userB passB
  74. 5. Runtime mode
  75. # To start the socks5 daemons in standalone mode on serverA on bindport 3000,
  76. # at the command prompt, type:
  77. #          ./socks5 -b 3000
  78. #
  79. # To start the socks5 daemons in standalone mode on serverB on bindport 2000,
  80. # at the command prompt, type:
  81. #          ./socks5 -b 2000
  82. 6. Client Configuration File libsocks5.conf
  83. # When the server and client are on the same network, it is most efficient to 
  84. # run the client without a configuration file. We include the configuration
  85. # file in this example to show how to control which server the client uses in
  86. # a multiple socks5 server environment.
  87. #
  88. # This is the libsocks5.conf configuration file for clientA. It should be in the
  89. # directory specified in the build, or in the default directory, usually /etc
  90. #
  91. # The order of proxy lines is crucial to achieve the desired results. In this
  92. # example, if the third line were first, any command to destination 163.201.56
  93. # would use serverA:3000.
  94. socks5 - 163.201.56.12 - mary,sam serverA:3000 #mary and sam are unix user ids 
  95. socks5 p,t 163.201.56. - mary,sam serverB:2000 #mary and sam are unix user ids 
  96. socks5 - 163.201.56. -  mary,sam serverA:3000  #mary and sam are unix user ids
  97. 7. Client Environment Variables
  98. # Set the environment variables for the socks5 user userA. Setting the 
  99. # SOCKS5_NONETMASKCHECK environment variable forces the client to read the
  100. # configuration file.
  101. # At the command prompt, type:
  102. setenv SOCKS5_NONETMASKCHECK 
  103. setenv SOCKS5_USER userA  
  104. setenv SOCKS5_PASSWD passA
  105. #Set the environment variables for the socks5 user userB
  106. #At the command prompt, type:
  107. setenv SOCKS5_NONETMASKCHECK
  108. setenv SOCKS5_USER userB  
  109. setenv SOCKS5_PASSWD passB