├── .github └── ISSUE_TEMPLATE │ ├── bug_request.yml │ └── feature_request.yml ├── README.md ├── config_template ├── config_fakeiptrpoxy12.json ├── config_fakeiptun12.json ├── config_tproxy.json ├── config_trpoxy12.json ├── config_tun.json └── server │ └── config.json ├── debian ├── auto_update.sh ├── check_config.sh ├── check_environment.sh ├── check_update.sh ├── clean_nft.sh ├── commands.sh ├── configure_tproxy.sh ├── configure_tun.sh ├── delaytest.sh ├── install_singbox.sh ├── kernel.sh ├── manage_autostart.sh ├── manual_input.sh ├── manual_update.sh ├── menu.sh ├── optimize.sh ├── set_defaults.sh ├── set_network.sh ├── setup.sh ├── start_singbox.sh ├── stop_singbox.sh ├── switch_mode.sh ├── ufw.sh ├── update_config.sh ├── update_scripts.sh └── update_ui.sh ├── openwrt ├── auto_update.sh ├── check_config.sh ├── check_environment.sh ├── clean_nft.sh ├── commands.sh ├── configure_tproxy.sh ├── configure_tun.sh ├── install_singbox.sh ├── manage_autostart.sh ├── manual_input.sh ├── manual_update.sh ├── menu.sh ├── set_defaults.sh ├── start_singbox.sh ├── stop_singbox.sh ├── switch_mode.sh ├── update_scripts.sh └── update_ui.sh └── sbshall.sh /.github/ISSUE_TEMPLATE/bug_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/.github/ISSUE_TEMPLATE/bug_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/README.md -------------------------------------------------------------------------------- /config_template/config_fakeiptrpoxy12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/config_template/config_fakeiptrpoxy12.json -------------------------------------------------------------------------------- /config_template/config_fakeiptun12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/config_template/config_fakeiptun12.json -------------------------------------------------------------------------------- /config_template/config_tproxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/config_template/config_tproxy.json -------------------------------------------------------------------------------- /config_template/config_trpoxy12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/config_template/config_trpoxy12.json -------------------------------------------------------------------------------- /config_template/config_tun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/config_template/config_tun.json -------------------------------------------------------------------------------- /config_template/server/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/config_template/server/config.json -------------------------------------------------------------------------------- /debian/auto_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/auto_update.sh -------------------------------------------------------------------------------- /debian/check_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/check_config.sh -------------------------------------------------------------------------------- /debian/check_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/check_environment.sh -------------------------------------------------------------------------------- /debian/check_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/check_update.sh -------------------------------------------------------------------------------- /debian/clean_nft.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/clean_nft.sh -------------------------------------------------------------------------------- /debian/commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/commands.sh -------------------------------------------------------------------------------- /debian/configure_tproxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/configure_tproxy.sh -------------------------------------------------------------------------------- /debian/configure_tun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/configure_tun.sh -------------------------------------------------------------------------------- /debian/delaytest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/delaytest.sh -------------------------------------------------------------------------------- /debian/install_singbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/install_singbox.sh -------------------------------------------------------------------------------- /debian/kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/kernel.sh -------------------------------------------------------------------------------- /debian/manage_autostart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/manage_autostart.sh -------------------------------------------------------------------------------- /debian/manual_input.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/manual_input.sh -------------------------------------------------------------------------------- /debian/manual_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/manual_update.sh -------------------------------------------------------------------------------- /debian/menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/menu.sh -------------------------------------------------------------------------------- /debian/optimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/optimize.sh -------------------------------------------------------------------------------- /debian/set_defaults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/set_defaults.sh -------------------------------------------------------------------------------- /debian/set_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/set_network.sh -------------------------------------------------------------------------------- /debian/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/setup.sh -------------------------------------------------------------------------------- /debian/start_singbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/start_singbox.sh -------------------------------------------------------------------------------- /debian/stop_singbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/stop_singbox.sh -------------------------------------------------------------------------------- /debian/switch_mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/switch_mode.sh -------------------------------------------------------------------------------- /debian/ufw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/ufw.sh -------------------------------------------------------------------------------- /debian/update_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/update_config.sh -------------------------------------------------------------------------------- /debian/update_scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/update_scripts.sh -------------------------------------------------------------------------------- /debian/update_ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/debian/update_ui.sh -------------------------------------------------------------------------------- /openwrt/auto_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/openwrt/auto_update.sh -------------------------------------------------------------------------------- /openwrt/check_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/openwrt/check_config.sh -------------------------------------------------------------------------------- /openwrt/check_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/openwrt/check_environment.sh -------------------------------------------------------------------------------- /openwrt/clean_nft.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/openwrt/clean_nft.sh -------------------------------------------------------------------------------- /openwrt/commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/openwrt/commands.sh -------------------------------------------------------------------------------- /openwrt/configure_tproxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/openwrt/configure_tproxy.sh -------------------------------------------------------------------------------- /openwrt/configure_tun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/openwrt/configure_tun.sh -------------------------------------------------------------------------------- /openwrt/install_singbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/openwrt/install_singbox.sh -------------------------------------------------------------------------------- /openwrt/manage_autostart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/openwrt/manage_autostart.sh -------------------------------------------------------------------------------- /openwrt/manual_input.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/openwrt/manual_input.sh -------------------------------------------------------------------------------- /openwrt/manual_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/openwrt/manual_update.sh -------------------------------------------------------------------------------- /openwrt/menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/openwrt/menu.sh -------------------------------------------------------------------------------- /openwrt/set_defaults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/openwrt/set_defaults.sh -------------------------------------------------------------------------------- /openwrt/start_singbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/openwrt/start_singbox.sh -------------------------------------------------------------------------------- /openwrt/stop_singbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/openwrt/stop_singbox.sh -------------------------------------------------------------------------------- /openwrt/switch_mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/openwrt/switch_mode.sh -------------------------------------------------------------------------------- /openwrt/update_scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/openwrt/update_scripts.sh -------------------------------------------------------------------------------- /openwrt/update_ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/openwrt/update_ui.sh -------------------------------------------------------------------------------- /sbshall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qljsyph/sbshell/HEAD/sbshall.sh --------------------------------------------------------------------------------