| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- local ucursor = require "luci.model.uci".cursor()
- local json = require "luci.jsonc"
- local server_section = arg[1]
- local proto = arg[2]
- local local_port = arg[3]
- local server = ucursor:get_all("shadowsocksr", server_section)
- local trojan = {
- log_level = 3,
- run_type = proto,
- local_addr = "0.0.0.0",
- local_port = tonumber(local_port),
- remote_addr = server.server,
- remote_port = tonumber(server.server_port),
- udp_timeout = 60,
- -- 传入连接
- password = {server.password},
- -- 传出连接
- ssl = {
- verify = (server.insecure == "0") and true or false,
- verify_hostname = (server.tls == "1") and true or false,
- cert = "",
- cipher = "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA:AES128-SHA:AES256-SHA:DES-CBC3-SHA",
- cipher_tls13 = "TLS_AES_128_GCM_SHA256:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_256_GCM_SHA384",
- sni = server.tls_host,
- alpn = {"h2", "http/1.1"},
- curve = "",
- reuse_session = true,
- session_ticket = false,
- },
- tcp = {
- no_delay = true,
- keep_alive = true,
- reuse_port = true,
- fast_open = (server.fast_open == "1") and true or false,
- fast_open_qlen = 20
- }
- }
- print(json.stringify(trojan, 1))
|