Can I port forward 80 and 443 to a reverse proxy like NPM or Swag?

  • Thread starter Thread starter retionac
  • Start date Start date
  • Replies Replies 4
  • Views Views 1,498
Messages
12
Location
Hyderabad
ISP
Airtel ACT
I currently have an Airtel PPPOE connection which offers me a dynamic IP. I would like to know if Airtel allows port forwarding of ports 80 and 443. If no then will me purchasing an Airtel static IPv4 allow me to use ports 80 and 443? If yes, then any extra steps I have to do to get the port forwarding for these ports working. I have port forwarded my Wireguard UDP port and OpenVPN TCP port with no issues but having issues with 80 and 443.
 
Try it
 
443 is open on my Airtel Xstream fiber connection. Here is a response from my nginx proxy,

Code:
$ openssl s_client -connect MYAIRTELWANIP
CONNECTED(00000003)
Can't use SSL_get_servername
depth=2 C = US, O = Internet Security Research Group, CN = ISRG Root X1
verify return:1
depth=1 C = US, O = Let's Encrypt, CN = R3
verify return:1
depth=0 CN = MYDOMAIN.COM
verify return:1
---
Certificate chain
 0 s:CN = MYDOMAIN.COM
   i:C = US, O = Let's Encrypt, CN = R3
 1 s:C = US, O = Let's Encrypt, CN = R3
   i:C = US, O = Internet Security Research Group, CN = ISRG Root X1
 2 s:C = US, O = Internet Security Research Group, CN = ISRG Root X1
   i:O = Digital Signature Trust Co., CN = DST Root CA X3
---
 

Back