mirror of
				https://github.com/angristan/openvpn-install.git
				synced 2025-10-31 14:07:36 +01:00 
			
		
		
		
	switch prefered methods to obtain the public ip
This commit is contained in:
		| @@ -632,12 +632,12 @@ function installOpenVPN() { | ||||
|  | ||||
| 		# Behind NAT, we'll default to the publicly reachable IPv4/IPv6. | ||||
| 		if [[ $IPV6_SUPPORT == "y" ]]; then | ||||
| 			if ! PUBLIC_IP=$(curl -f --retry 5 --retry-connrefused https://ip.seeip.org); then | ||||
| 				PUBLIC_IP=$(dig -6 TXT +short o-o.myaddr.l.google.com @ns1.google.com | tr -d '"') | ||||
| 			if ! PUBLIC_IP=$(dig -6 TXT +short o-o.myaddr.l.google.com @ns1.google.com | tr -d '"'); then | ||||
| 				PUBLIC_IP=$(curl -f --retry 5 --retry-connrefused https://ip.seeip.org) | ||||
| 			fi | ||||
| 		else | ||||
| 			if ! PUBLIC_IP=$(curl -f --retry 5 --retry-connrefused -4 https://ip.seeip.org); then | ||||
| 				PUBLIC_IP=$(dig -4 TXT +short o-o.myaddr.l.google.com @ns1.google.com | tr -d '"') | ||||
| 			if ! PUBLIC_IP=$(dig -4 TXT +short o-o.myaddr.l.google.com @ns1.google.com | tr -d '"'); then | ||||
| 				PUBLIC_IP=$(curl -f --retry 5 --retry-connrefused -4 https://ip.seeip.org) | ||||
| 			fi | ||||
| 		fi | ||||
| 		ENDPOINT=${ENDPOINT:-$PUBLIC_IP} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Alef Farah
					Alef Farah