Add a config parameter: enable persistant client virtual IP (ifconfig-pool-persist)
This commit is contained in:
parent
10a072ca17
commit
f16f475b50
@ -107,6 +107,7 @@ usage() {
|
|||||||
echo " -S Change status folder. Default '/tmp'"
|
echo " -S Change status folder. Default '/tmp'"
|
||||||
echo " -R Disable the reduce the OpenVPN daemon's privileges after initialization."
|
echo " -R Disable the reduce the OpenVPN daemon's privileges after initialization."
|
||||||
echo " -K Set a client config directory. Default Disable. Example: 'ccd'"
|
echo " -K Set a client config directory. Default Disable. Example: 'ccd'"
|
||||||
|
echo " -V Enable the the record of client <-> virtual IP address (store in a config file)."
|
||||||
}
|
}
|
||||||
|
|
||||||
process_route_config() {
|
process_route_config() {
|
||||||
@ -173,12 +174,13 @@ OVPN_TLS_CIPHER=''
|
|||||||
OVPN_STATUS_PATH='/tmp'
|
OVPN_STATUS_PATH='/tmp'
|
||||||
OVPN_DISABLE_REDUCE_DEAMON_S_PRIVILEGES=0
|
OVPN_DISABLE_REDUCE_DEAMON_S_PRIVILEGES=0
|
||||||
OVPN_CLIENT_CONFIG_DIR=''
|
OVPN_CLIENT_CONFIG_DIR=''
|
||||||
|
OVPN_ENABLE_KEEP_CLIENT_VIRTUAL_IP=0
|
||||||
|
|
||||||
# Import existing configuration if present
|
# Import existing configuration if present
|
||||||
[ -r "$OVPN_ENV" ] && source "$OVPN_ENV"
|
[ -r "$OVPN_ENV" ] && source "$OVPN_ENV"
|
||||||
|
|
||||||
# Parse arguments
|
# Parse arguments
|
||||||
while getopts ":a:e:E:C:T:r:s:du:bcp:n:k:DNm:f:tz2S:RK:" opt; do
|
while getopts ":a:e:E:C:T:r:s:du:bcp:n:k:DNm:f:tz2S:RK:V" opt; do
|
||||||
case $opt in
|
case $opt in
|
||||||
a)
|
a)
|
||||||
OVPN_AUTH="$OPTARG"
|
OVPN_AUTH="$OPTARG"
|
||||||
@ -268,6 +270,9 @@ while getopts ":a:e:E:C:T:r:s:du:bcp:n:k:DNm:f:tz2S:RK:" opt; do
|
|||||||
K)
|
K)
|
||||||
OVPN_CLIENT_CONFIG_DIR="$OPTARG"
|
OVPN_CLIENT_CONFIG_DIR="$OPTARG"
|
||||||
;;
|
;;
|
||||||
|
V)
|
||||||
|
OVPN_ENABLE_KEEP_CLIENT_VIRTUAL_IP=1
|
||||||
|
;;
|
||||||
\?)
|
\?)
|
||||||
set +x
|
set +x
|
||||||
echo "Invalid option: -$OPTARG" >&2
|
echo "Invalid option: -$OPTARG" >&2
|
||||||
@ -380,6 +385,8 @@ fi
|
|||||||
[ "$OVPN_COMP_LZO" == "1" ] && echo "comp-lzo" >> "$conf"
|
[ "$OVPN_COMP_LZO" == "1" ] && echo "comp-lzo" >> "$conf"
|
||||||
[ "$OVPN_COMP_LZO" == "0" ] && echo "comp-lzo no" >> "$conf"
|
[ "$OVPN_COMP_LZO" == "0" ] && echo "comp-lzo no" >> "$conf"
|
||||||
|
|
||||||
|
[ "$OVPN_ENABLE_KEEP_CLIENT_VIRTUAL_IP" == "1" ] && echo "ifconfig-pool-persist /etc/openvpn/client_vitual_ip.txt" >> "$conf"
|
||||||
|
|
||||||
[ -n "${OVPN_FRAGMENT:-}" ] && echo "fragment $OVPN_FRAGMENT" >> "$conf"
|
[ -n "${OVPN_FRAGMENT:-}" ] && echo "fragment $OVPN_FRAGMENT" >> "$conf"
|
||||||
|
|
||||||
# Append route commands
|
# Append route commands
|
||||||
|
Loading…
x
Reference in New Issue
Block a user