Advertisement
Guest User

Untitled

a guest
May 5th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.25 KB | None | 0 0
  1. # This is the configuration for libtsocks (transparent socks)
  2. # Lines beginning with # and blank lines are ignored
  3. #
  4. # The basic idea is to specify:
  5. #   - Local subnets - Networks that can be accessed directly without
  6. #             assistance from a socks server
  7. #   - Paths - Paths are basically lists of networks and a socks server
  8. #         which can be used to reach these networks
  9. #   - Default server - A socks server which should be used to access
  10. #              networks for which no path is available
  11. # Much more documentation than provided in these comments can be found in
  12. # the man pages, tsocks(8) and tsocks.conf(8)
  13.  
  14. # Local networks
  15. # For this example this machine can directly access 192.168.0.0/255.255.255.0
  16. # (192.168.0.*) and 10.0.0.0/255.0.0.0 (10.*)
  17.  
  18. local = 192.168.0.0/255.255.255.0
  19. local = 10.0.0.0/255.0.0.0
  20.  
  21. # Default server
  22. # For connections that aren't to the local subnets or to 150.0.0.0/255.255.0.0
  23. # the server at 192.168.0.1 should be used (again, hostnames could be used
  24. # too, see note above)
  25.  
  26. server = hxxxxx.stratoserver.net
  27. # Server type defaults to 4 so we need to specify it as 5 for this one
  28.  
  29. # The port defaults to 1080 but I've stated it here for clarity
  30.  
  31. server_port = 7070  
  32. server_type = 5
  33. default_user = bla
  34. default_pass = blubb
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement