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

代理服务器

开发平台:

Unix_Linux

  1. File Name: server_2_multiple_server.example
  2. 1.Example - socks5 Username/Password server to multiple Kerberos servers 
  3.           authentication
  4. # This example describes a socks5 environment with:
  5. # - three single-homed servers S5SV1, S5SV2, and S5SV3 on network 163.201.56
  6. #   with one client, CL1 and destination dest1
  7. #
  8. # S5SV1 and CL1 use Username/Password authentication
  9. # S5SV2 and S5SV3 use Kerberos and support Username/Password authentication
  10. #
  11. # S5SV1 has one socks5 user user1
  12. # CL1 has one socks5 user user4
  13. #
  14. # S5SV2 uses Kerberos id S5SV2.ker.id 
  15. # S5SV3 uses Kerberos id S5SV3.ker.id
  16. #
  17. # CL1 has one socks5 user, user4, who can issue all commands to any destination
  18. # using any port on network 163.201.56. using server S5SV1:3000.
  19. #
  20. # When S5SV1:3000 receives a request for destination Dest1, whose IP address
  21. # is 163.201.56.5 on any port, S5SV1 sends the request to proxy server S5SV2
  22. #
  23. # When S5SV1 receives a request for any other destination on 163.201.56, S5SV1
  24. # sends the request to proxy server S5SV3. If S5SV3 is not available, S5SV1 
  25. # sends the request to S5SV2. If S5SV2 is not available, the command fails.
  26.                                          Kerberos
  27.                                          --------
  28.                            ____________ | S5SV2  |___________
  29.                           |              --------            |
  30.                           |                                  | 
  31.          -------       --------                            ---------
  32.         | CL1   |---- | S5SV1  |        163.201.56        | Dest1   |
  33.          -------       --------                            ---------
  34.                     Username/Password                        | 
  35.                      IP 163.201.56.1      --------           |
  36.                           |_____________ | S5SV3  |__________|
  37.                                           --------
  38.                                          Kerberos 
  39. 2. Server Environment Variables
  40. # You must tell the server where to find the configuration file. You can do so
  41. # in one of three ways:
  42. #  - Set the environment variable SOCKS5_CONFFILE
  43. #  - Include the socks5.conf file in the default directory, usually /etc
  44. #  - Build with the --with-srvconffile=path option
  45. # This example demonstrates using environment variables. The example path is 
  46. # arbitrary.
  47. # Set the environment variables for S5SV1, S5SV2 and S5SV3.
  48. # S5SV1:3000
  49. setenv SOCKS5_CONFFILE /socksdir/run/socks5.conf.3000
  50. setenv SOCKS5_PWDFILE  /socksdir/run/socks5.passwd
  51. setenv SOCKS5_USER user1
  52. setenv SOCKS5_PASSWD pass1
  53. setenv SOCKS5_NONETMASKCHECK
  54. # S5SV2:2000
  55. setenv SOCKS5_CONFFILE /socksdir/run/socks5.conf.2000
  56. setenv SOCKS5_PWDFILE  /socksdir/run/socks5.passwd
  57. setenv SOCKS5_USER user2
  58. setenv SOCKS5_PASSWD pass2
  59. setenv SOCKS5_NONETMASKCHECK
  60. # S5SV3:3050
  61. setenv SOCKS5_CONFFILE /socksdir/run/socks5.conf.3050
  62. setenv SOCKS5_PWDFILE  /socksdir/run/socks5.passwd
  63. setenv SOCKS5_USER user3
  64. setenv SOCKS5_PASSWD pass3
  65. setenv SOCKS5_NONETMASKCHECK
  66. 3. Server Configuration File socks5.conf
  67. # These are the socks5.conf files for S5SV1 with Username/Password
  68. # authentication, S5SV2 and S5SV3 with Kerberos and Username/Password
  69. # authentication.
  70. #
  71. # The socks5.conf files must be in the directories specified in the
  72. # SOCKS5_CONFFILE environment variable or the default directory, usually /etc
  73. # S5SV1:3000   filename  /socksdir/run/socks5.conf.3000
  74. auth 163.201. - u
  75. permit u - 163.201. 163.201. - - user1,user2,user3,user4
  76. socks5 Dest1 - S5SV2:2000  
  77. socks5 163.201.56. - S5SV3:3050,S5SV2:2000
  78. #S5SV2:2000 filename /socksdir/run/socks5.conf.2000
  79. auth 163.201. - u,k
  80. permit u,k - 163.201. 163.201. - - user1,user2,user3,user2.ker.id, /
  81. user3.ker.id,user4
  82. #S5SV3:3050 filename /socksdir/run/socks5.conf.3050
  83. auth 163.201. - u,k
  84. permit u,k - 163.201. 163.201. - - user1,user2,user3,user2.ker.id, /
  85. user3.ker.id,user4
  86. 4. Server socks5 Password File 
  87. # This is the socks5 Username/Password file. It should be in the directory
  88. # specified in the SOCKS5_PWDFILE environment variable, or the default
  89. # directory, usually /etc
  90. # This file should reside on all three servers or be accessible to all three
  91. # servers.
  92. # To add more users, place each user on a new line with username and password
  93. # separated by white space.
  94. user1 pass1
  95. user2 pass2
  96. user3 pass3
  97. user4 pass4
  98. 5. Runtime mode
  99. # To start the socks5 daemons in standalone mode on S5SV1 on bindport 3000, 
  100. # S5SV1:3000, at the command prompt, type:
  101. #  ./socks5 -b 3000
  102. # To start the socks5 daemons in standalone mode on S5SV2 on bindport 2000,
  103. # S5SV2:2000, at the command prompt, type:
  104. #  ./socks5 -b 2000
  105. # To start the socks5 daemons in standalone mode on S5SV3 on bindport 3050
  106. # S5SV3:3050, at the command prompt, type:
  107. #  ./socks5 -b 3050
  108. 6. Client Configuration File libsocks5.conf
  109. # This is the libsocks5.conf configuration file for clientA. It must be in the
  110. # directory specified in the build, or in the default directory, usually /etc.
  111. socks5 - 163.201.64. -  sam 163.201.56.1:3000     #sam is the unix userid 
  112. 7. Client Environment Variables
  113. # In this example, because the client and the server are on the same network,
  114. # it is most efficient to run the socks5 client without a libsocks5.conf file.
  115. # The client connects directly to the server. To directly connect:
  116. # - do not set the SOCKS5_NONETMASKCHECK environment variable
  117. # - set the SOCKS5_SERVER S5SV1:3000 or include the build option
  118. #    --with-default-server=S5SV1:3000. See the configure man page for
  119. #         additional information about this build option.
  120. # Environment variables with a libsocks5.conf file
  121. setenv SOCKS5_NONETMASKCHECK
  122. setenv SOCKS5_USER user2
  123. setenv SOCKS5_PASSWD pass2