欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ss Python 一键安装

程序员文章站 2022-03-25 13:41:08
...

一键安装脚本wiki

 

本脚本适用环境:
系统支持:CentOS 6,7,Debian,Ubuntu
内存要求:≥128M
日期:2017 年 07 月 28 日

关于本脚本:
一键安装 Python 版 * 的最新版。

默认配置:
服务器端口:自己设定(如不设定,默认为 8989)
密码:自己设定(如不设定,默认为 teddysun.com)
加密方式:自己设定(如不设定,默认为 aes-256-gcm)
备注:脚本默认创建单用户配置文件,如需配置多用户,安装完毕后参照下面的教程示例手动修改配置文件后重启即可。

客户端下载:
Windows
Android

使用方法:
使用root用户登录,运行以下命令:

wget --no-check-certificate https://raw.githubusercontent.com/teddysun/*_install/master/*.sh
chmod +x *.sh
./*.sh 2>&1 | tee *.log

安装完成后,脚本提示如下:

Congratulations, * install completed!   
Your Server IP:your_server_ip   
Your Server Port:your_server_port   
Your Password:your_password   
Your Local IP:127.0.0.1   
Your Local Port:1080   
Your Encryption Method:aes-256-cfb   

Welcome to visit:http://teddysun.com/342.html   
Enjoy it! 

卸载方法:
使用root用户登录,运行以下命令:

./*.sh uninstall

单用户配置文件 Sample
配置文件路径:

vi /etc/*.json
{  
    "server":"0.0.0.0",  
    "server_port":8989,   
    "local_address":"127.0.0.1",  
    "local_port":1080,  
    "password":"yourpassword",  
    "timeout":300,  
    "method":"aes-256-cfb",  
    "fast_open": false  
}

多用户多端口配置文件 Sample
配置文件路径:

vi /etc/*.json
{  
    "server":"0.0.0.0",
    "local_address":"127.0.0.1",
    "local_port":1080,
    "port_password":{
         "8989":"password0",
         "9001":"password1",
         "9002":"password2",
         "9003":"password3",
         "9004":"password4"
    },
    "timeout":300,
    "method":"aes-256-cfb",
    "fast_open": false
}

使用命令(2015 年 08 月 28 日修正):
启动:/etc/init.d/* start
停止:/etc/init.d/* stop
重启:/etc/init.d/* restart
状态:/etc/init.d/* status
写入自启echo "ssserver -c /etc/*.json -d restart" >> /etc/rc.local
查看日志less /var/log/*.log

说明: 从 * 2.6 开始,你可以直接在后台运行 *,无需 Supervisor 。 这样省掉了 Supervisor 进程占用的内存。

ssserver -c /etc/*.json -d start
ssserver -c /etc/*.json -d stop
ssserver -c /etc/*.json -d restart

查看连接的人数

Ubuntu:apt-get install lsof -y
CentOs:yum install lsof -y

# 假设服务器端口1080, 查看连接数
sudo lsof -i -n -P | egrep -c ':1080.+ESTABLISHED'

# 查看连接列表
sudo lsof -i -n -P | egrep ':1080.+ESTABLISHED'

利用脚本查看连接列表,并添加定时任务
新建目录mkdir test里添加以下脚本

#!/bin/bash
#
# File: port-ip-monitor.sh
#
# Created: Wednesday, August 27 2014 by Hua Liang[Stupid ET] <[email protected]>
#

filename="port-ip-monitor.log"
regex="8888"  # monitor 你的端口

date +"[%Y-%m-%d %H:%M:%S]" >> $filename
netstat -anp | egrep $regex | grep -E "tcp.*ESTABLISHED" | awk '{print $4, $5}' | cut -d: -f2 | sort -u >> $filename

编辑crontab -e里增加* * * * * (cd /test/ && bash port-ip-monitor.sh)
启动服务service crond start
然后我们在/test/里就看到port-ip-monitor.log了
查看日志less /test/port-ip-monitor.log

参考链接:
https://*.be/1.html
http://everet.org/*.html

相关标签: s