From fbbdf90a0567e2efc1fe43a29c3dd2827d0441fe Mon Sep 17 00:00:00 2001 From: yanglinfeng Date: Wed, 27 Dec 2017 22:52:53 +0800 Subject: [PATCH] change default method from 'rc4-md5' to 'aes-256-cfb' --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 1a0375f..2b85cbf 100644 --- a/install.sh +++ b/install.sh @@ -9,8 +9,8 @@ read -p "server port (default: 22222):" ss_port [ -z "${ss_port}" ] && ss_port="22222" read -p "password (default: 12345678):" ss_password [ -z "${ss_password}" ] && ss_password="ss_password" -read -p "method (default: rc4-md5):" ss_method -[ -z "${ss_method}" ] && ss_method="rc4-md5" +read -p "method (default: aes-256-cfb):" ss_method +[ -z "${ss_method}" ] && ss_method="aes-256-cfb" echo echo "Please input your ISP dns or public dns you want to use" read -p "(default: 114.114.114.114):" public_dns