2014-06-04 23:49:13 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
#
|
|
|
|
# Generate OpenVPN configs
|
|
|
|
#
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
2014-06-30 06:04:42 +00:00
|
|
|
servername=$(cat "$OPENVPN/servername" 2> /dev/null)
|
|
|
|
cn=${1-$servername}
|
2014-06-04 23:49:13 +00:00
|
|
|
|
|
|
|
if [ -z "$cn" ]; then
|
|
|
|
echo "Common name not specified"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
cat > "$OPENVPN/udp1194.conf" <<EOF
|
2014-06-30 05:45:30 +00:00
|
|
|
server 192.168.255.0 255.255.255.0
|
2014-06-04 23:49:13 +00:00
|
|
|
verb 3
|
|
|
|
#duplicate-cn
|
|
|
|
key $EASYRSA_PKI/private/$cn.key
|
|
|
|
ca $EASYRSA_PKI/ca.crt
|
|
|
|
cert $EASYRSA_PKI/issued/$cn.crt
|
|
|
|
dh $EASYRSA_PKI/dh.pem
|
|
|
|
tls-auth $EASYRSA_PKI/ta.key
|
|
|
|
key-direction 0
|
|
|
|
keepalive 10 60
|
|
|
|
persist-key
|
|
|
|
persist-tun
|
|
|
|
push "dhcp-option DNS 8.8.4.4"
|
|
|
|
push "dhcp-option DNS 8.8.8.8"
|
2014-06-30 05:44:05 +00:00
|
|
|
client-config-dir $OPENVPN/ccd
|
2014-06-04 23:49:13 +00:00
|
|
|
|
|
|
|
proto udp
|
|
|
|
port 1194
|
|
|
|
dev tun1194
|
|
|
|
status /tmp/openvpn-status-1194.log
|
|
|
|
EOF
|