From f855a975305ad9e90584e1bcd3daefcab199a2ab Mon Sep 17 00:00:00 2001 From: Nao_ke Date: Wed, 6 May 2020 23:55:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=81=E8=AE=B8=E5=A4=9A=E4=BA=BA=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E4=B8=BA=E5=BC=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- openvpn-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 80b0539..d3544f5 100755 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -154,7 +154,7 @@ function installQuestions() { esac echo "" echo "你想让Openvpn使用哪种协议?" - echo "UDP更加快速。除非你的机器被禁用UDP,否则不要使用TCP。" + echo "UDP更加快速。除非你的设备不能使用UDP,否则不要使用TCP。" echo " 1) UDP" echo " 2) TCP" until [[ $PROTOCOL_CHOICE =~ ^[1-2]$ ]]; do @@ -196,7 +196,7 @@ function installQuestions() { echo "" echo "你想允许多人连接同一个账号吗?" until [[ $MULTI_USER =~ (y|n) ]]; do - read -rp"允许多人 [y/n]: " -e -i n MULTI_USER + read -rp"允许多人 [y/n]: " -e -i y MULTI_USER done echo "" echo "你想自定义Openvpn的加密方式吗?"