diff --git a/docs/manage-users-zh.md b/docs/manage-users-zh.md index e44084a..9c8cd32 100644 --- a/docs/manage-users-zh.md +++ b/docs/manage-users-zh.md @@ -58,9 +58,9 @@ wget -O add_vpn_user.sh https://bit.ly/addvpnuser ```bash # 所有变量值必须用 '单引号' 括起来 # *不要* 在值中使用这些字符: \ " ' -sudo sh add_vpn_user.sh '要添加的用户名' '密码' +sudo sh add_vpn_user.sh '要添加的用户名' '密码' 'IP' # 或者 -sudo sh add_vpn_user.sh '要更新的用户名' '新密码' +sudo sh add_vpn_user.sh '要更新的用户名' '新密码' 'IP' ``` ### 删除一个 VPN 用户 @@ -95,7 +95,7 @@ wget -O update_vpn_users.sh https://bit.ly/updatevpnusers ```bash nano -w update_vpn_users.sh -[替换为你自己的值: YOUR_USERNAMES 和 YOUR_PASSWORDS] +[替换为你自己的值: YOUR_USERNAMES、YOUR_PASSWORDS 和 YOUR_IP_ADDRESSES] sudo sh update_vpn_users.sh ``` @@ -108,6 +108,7 @@ sudo sh update_vpn_users.sh sudo \ VPN_USERS='用户名1 用户名2 ...' \ VPN_PASSWORDS='密码1 密码2 ...' \ +VPN_IP_ADDRESSES='IP1 IP2 ...' \ sh update_vpn_users.sh ``` diff --git a/docs/manage-users.md b/docs/manage-users.md index 3c94843..582b473 100644 --- a/docs/manage-users.md +++ b/docs/manage-users.md @@ -58,9 +58,9 @@ wget -O add_vpn_user.sh https://bit.ly/addvpnuser ```bash # All values MUST be placed inside 'single quotes' # DO NOT use these special characters within values: \ " ' -sudo sh add_vpn_user.sh 'username_to_add' 'password' +sudo sh add_vpn_user.sh 'username_to_add' 'password' 'ip_address' # OR -sudo sh add_vpn_user.sh 'username_to_update' 'new_password' +sudo sh add_vpn_user.sh 'username_to_update' 'new_password' 'ip_address' ``` ### Delete a VPN user @@ -95,7 +95,7 @@ To use this script, choose one of the following options: ```bash nano -w update_vpn_users.sh -[Replace with your own values: YOUR_USERNAMES and YOUR_PASSWORDS] +[Replace with your own values: YOUR_USERNAMES, YOUR_PASSWORDS and YOUR_IP_ADDRESSES] sudo sh update_vpn_users.sh ``` @@ -108,6 +108,7 @@ sudo sh update_vpn_users.sh sudo \ VPN_USERS='username1 username2 ...' \ VPN_PASSWORDS='password1 password2 ...' \ +VPN_IP_ADDRESSES='ip1 ip2 ...' \ sh update_vpn_users.sh ``` diff --git a/extras/add_vpn_user.sh b/extras/add_vpn_user.sh old mode 100644 new mode 100755 index 51fd065..b2196f0 --- a/extras/add_vpn_user.sh +++ b/extras/add_vpn_user.sh @@ -41,19 +41,20 @@ fi VPN_USER=$1 VPN_PASSWORD=$2 +VPN_IP_ADDRESS=$3 -if [ -z "$VPN_USER" ] || [ -z "$VPN_PASSWORD" ]; then +if [ -z "$VPN_USER" ] || [ -z "$VPN_PASSWORD" ] || [ -z "$VPN_IP_ADDRESS" ]; then cat 1>&2 <> /etc/ppp/chap-secrets <> /etc/ppp/chap-secrets <> /etc/ipsec.d/passwd <