zhang888 1066 Posted ... You forgot the rule that will accept 51206 on tun0 and DNAT it to your webservers 80/443. 2 OmniNegro and cm0s reacted to this Quote Hide zhang888's signature Hide all signatures Occasional moderator, sometimes BOFH. Opinions are my own, except when my wife disagrees. Share this post Link to post
zhang888 1066 Posted ... iptables -t nat -A PREROUTING -i tun0 -p tcp --dport 51206 -j DNAT --to 192.168.1.105:80iptables -t nat -A PREROUTING -i tun0 -p tcp --dport 51207 -j DNAT --to 192.168.1.105:443 You will need 2 high ports if you wish to use both 80 and 443 local ports. Those 2 don't make sense since they will never match - your tun0 IP will be 10/8 and not 94.100.23.163: iptables -I FORWARD -i tun0 -p udp -d 94.100.23.163 --dport 51206 -j ACCEPT # forward airvpn portiptables -I FORWARD -i tun0 -p tcp -d 94.100.23.163 --dport 51206 -j ACCEPT # forward airvpn port 1 cm0s reacted to this Quote Hide zhang888's signature Hide all signatures Occasional moderator, sometimes BOFH. Opinions are my own, except when my wife disagrees. Share this post Link to post
zhang888 1066 Posted ... Not sure what you meant in your other part of the post, but in order to have SSL runningyou don't have to wait for any verification from your reseller (Namecheap etc.) and you cansimply authorize your domain's SSL certificate using MX, TXT or HTTP methods.All of the methods are supported with EFF sponsored https://LetsEncrypt.org CA. If you still want to avoid using high ports for your target audience, you have 2 options:1) Running a VPS with a public IPv4, where the VPN client will run and forward it to your (home) backend2) Running a Tor hidden service. 1 cm0s reacted to this Quote Hide zhang888's signature Hide all signatures Occasional moderator, sometimes BOFH. Opinions are my own, except when my wife disagrees. Share this post Link to post
cm0s 118 Posted ... easy to get lost in diff hosting companies admin areas got it goin appreciate the help Quote Share this post Link to post