You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
5.2 KiB

  1. ## components
  2. `ss-local` provides SOCKS5 proxy with UDP associate support.
  3. socks5 ss plain
  4. --------> tcp:local_address:local_port ----> ss server -------> dest
  5. `ss-redir`. The REDIRECT and TPROXY part are to be provided by `ss-rules` script. REDIRECT is for tcp traffic (`SO_ORIGINAL_DST` only supports TCP). TPROXY is for udp messages, but it's only available in the PREROUTING chain and as such cannot proxy local out traffic.
  6. plain plain ss plain
  7. ---------> REDIRECT ------> tcp:local_address:local_port ----> ss server -----> original dest
  8. plain plain ss plain
  9. ---------> TPROXY -------> udp:local_address:local_port -----> ss server -----> original dest
  10. `ss-tunnel` provides ssh `-L` local-forwarding-like tunnel. Typically it's used to tunnel DNS traffic to the remote.
  11. plain ss plain
  12. ---------> tcp|udp:local_address:local_port ------> ss server -------> tunnel_address
  13. `ss-server`, the "ss server" in the above diagram
  14. ## uci
  15. Option names are the same as those used in json config files. Check `validate_xxx` func definition of the [service script](files/shadowsocks-libev.init) and shadowsocks-libev's own documentation for supported options and expected value types. A [sample config file](files/shadowsocks-libev.config) is also provided for reference.
  16. Every section have a `disabled` option to temporarily turn off the component instance or component instances referring to it.
  17. Section type `server` is for definition of remote shadowsocks servers. They will be referred to from other component sections and as such should be named (as compared to anonymous section).
  18. Section type `ss_local`, `ss_redir`, `ss_tunnel` are for specification of shadowsocks-libev components. They share mostly a common set of options like `local_port`, `verbose`, `fast_open`, `timeout`, etc.
  19. We can have multiple instances of component and `server` sections. The relationship between them is many-to-one. This will have the following implications
  20. - It's possible to have both `ss_local` and `ss_redir` referring to the same `server` definition
  21. - It's possible to have multiple instances of `ss_redir` listening on the same address:port with `reuse_port` enabled referring to the same or different `server` sections
  22. `ss_rules` section is for configuring the behaviour of `ss-rules` script. There can only exist at most one such section with the name also being `ss_rules`
  23. redir_tcp name of ss_redir section with mode tcp_only or tcp_and_udp
  24. redir_udp name of ss_redir section with mode udp_only or tcp_and_udp
  25. ifnames only apply rules on packets from these ifnames
  26. --- for incoming packets having source address in
  27. src_ips_bypass will bypass the redir chain
  28. src_ips_forward will always go through the redir chain
  29. src_ips_checkdst will continue to have their destination addresses checked
  30. --- otherwise, the default action can be specified with
  31. src_default bypass, forward, [checkdst]
  32. --- if the previous check result is checkdst,
  33. --- then packets having destination address in
  34. dst_ips_bypass_file
  35. dst_ips_bypass will bypass the redir chain
  36. dst_ips_forward_file
  37. dst_ips_forward will go through the redir chain
  38. --- otherwise, the default action can be specified with
  39. dst_default [bypass], forward
  40. --- for local out tcp packets, the default action can be specified with
  41. local_default [bypass], forward, checkdst
  42. Bool option `dst_forward_recentrst` requires iptables/netfilter `recent` match module (`opkg install iptables-mod-conntrack-extra`). When enabled, `ss-rules` will setup iptables rules to forward through `ss-redir` those packets whose destination have recently sent to us multiple tcp-rst.
  43. ss-rules uses kernel ipset mechanism for storing addresses/networks. Those ipsets are also part of the API and can be populated by other programs, e.g. dnsmasq with builtin ipset support. For more details please read output of `ss-rules --help`
  44. Note also that `src_ips_xx` and `dst_ips_xx` actually also accepts cidr network representation. Option names are retained in its current form for backward compatibility coniderations
  45. ## notes and faq
  46. Useful paths and commands for debugging
  47. # check current running status
  48. ubus call service list '{"name": "shadowsocks-libev"}'
  49. ubus call service list '{"name": "shadowsocks-libev", "verbose": true}'
  50. # dump validate definition
  51. ubus call service validate '{"package": "shadowsocks-libev"}'
  52. ubus call service validate '{"package": "shadowsocks-libev"}' \
  53. | jsonfilter -e '$["shadowsocks-libev"]["ss_tunnel"]'
  54. # check json config
  55. ls -l /var/etc/shadowsocks-libev/
  56. # set uci config option verbose to 1, restart the service and follow the log
  57. logread -f
  58. ss-redir needs to open a new socket and setsockopt IP_TRANSPARENT when sending udp reply to client. This requires `CAP_NET_ADMIN` and as such the process cannot run as `nobody`
  59. ss-local, ss-redir, etc. supports specifying an array of remote ss server, but supporting this in uci seems to be overkill. The workaround can be defining multiple `server` sections and multiple `ss-redir` instances with `reuse_port` enabled