Advertisement
Guest User

Untitled

a guest
Jul 27th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. win client
  2.  
  3. {
  4. "log": {
  5. "loglevel": "info"
  6. },
  7. "inbound": {
  8. "port": ``,
  9. "listen": "127.0.0.1",
  10. "protocol": "socks",
  11. "settings": {
  12. "auth": "noauth",
  13. "udp": false,
  14. "ip": "127.0.0.1"
  15. }
  16. },
  17.  
  18.  
  19. "outbound":{
  20. #"sendThrough": "0.0.0.0",
  21. "protocol": "vmess",
  22. "settings": {
  23. "vnext": [
  24. {
  25. "address": "192.168.1.4",
  26. "port": 8889,
  27. "users": [
  28. {
  29. "id": "``````````````````",
  30. "alterId": 32
  31. #"security": "aes-128-cfb",
  32. #"level": 1
  33. }
  34. ]
  35. }
  36. ]
  37. },
  38. #"tag": "1ffas2",
  39. "streamSettings": {
  40. "network": "mkcp"
  41. },
  42. "mux": {
  43. "enabled": false,
  44. "concurrency": 20
  45. }
  46. #"proxySettings": {
  47. #"tag": "d11"
  48. #}
  49. },
  50.  
  51. # "outbound": {
  52. # "protocol": "freedom",
  53. # "settings": {},
  54. # "tag": "direct"
  55. # },
  56. "policy": {
  57. "levels": {
  58. "0": {"uplinkOnly": 0}
  59. }
  60. },
  61.  
  62. "transport": {
  63. }
  64. }
  65.  
  66.  
  67. linux server
  68. {
  69. "log" : {
  70. # "access": "/var/log/v2acc.log",
  71. # "error": "/var/log/v2err.log",
  72. "loglevel": "debug"
  73. },
  74. "inbound": {
  75. "port": ```,
  76. "listen":"0.0.0.0",
  77. "protocol": "vmess",
  78. "settings": {
  79. "clients": [
  80. {
  81. "id": "`````````",
  82. "level": 0,
  83. "alterId": 32
  84. }
  85. ]
  86. },
  87. "streamSettings": {"network": "kcp"}
  88. },
  89.  
  90. "outbound": {
  91. "protocol": "freedom",
  92. "settings": {}
  93. },
  94. "outboundDetour": [
  95. {
  96. "protocol": "blackhole",
  97. "settings": {},
  98. "tag": "blocked"
  99. }
  100. ],
  101.  
  102. "policy":{
  103. "levels": {
  104. "0": {
  105. "handshake": 4,
  106. "connIdle": 300,
  107. "uplinkOnly": 2,
  108. "downlinkOnly": 5,
  109. "statsUserUplink": false,
  110. "statsUserDownlink": false,
  111. "bufferSize": 0 //def 10240
  112. }
  113. },
  114. "system": {
  115. "statsInboundUplink": false,
  116. "statsInboundDownlink": false
  117. }
  118. }
  119.  
  120. #"transport": {
  121. # }
  122.  
  123. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement