How to realize an OpenVPN server reliable, quick and easy? ONLY copy & paste this bash script like openvpn.sh #!/bin/bash # defaults ADMINPASSWORD=”secret” DNS1=”8.8.8.8″ DNS2=”8.8.4.4″ PROTOCOL=udp PORT=1194 HOST=$(wget -4qO- “http://whatismyip.akamai.com/”) for i in “$@” do case $i in –adminpassword=*) ADMINPASSWORD=”${i#*=}” ;; –dns1=*) DNS1=”${i#*=}” ;; –dns2=*) DNS2=”${i#*=}” ;; –vpnport=*) PORT=”${i#*=}” ;; –protocol=*) PROTOCOL=”${i#*=}” ;; –host=*) HOST=”${i#*=}”…