garycnew
Senior Member
All:
I've run into an issue where I'm trying to run a web service on the Asuswrt-Merlin br0 Dynamic IP Address, but it appears that there are Port 80 DNAT's that already exist.
Does anyone else have similar Port 80 DNAT's? If so, do you know the purpose of them?
Presently, I don't see any services running on the referenced high-ports, but it could be related to an on-demand service such as acme.sh's standalone method, etc. The Asuswrt-Merlin Web UI listens on 127.0.01:80 and 192.168.0.1:80.
Any clue as to the purpose of these Port 80 DNAT's and their importance is greatly appreciated.
Respectfully,
Gary
I've run into an issue where I'm trying to run a web service on the Asuswrt-Merlin br0 Dynamic IP Address, but it appears that there are Port 80 DNAT's that already exist.
Code:
# iptables -t nat -S | grep 80
-A VSERVER -p tcp -m tcp --dport 80 -j DNAT --to-destination 192.168.0.1:62299
-A VSERVER -p tcp -m tcp --dport 80 -j DNAT --to-destination 192.168.0.1:46326
Presently, I don't see any services running on the referenced high-ports, but it could be related to an on-demand service such as acme.sh's standalone method, etc. The Asuswrt-Merlin Web UI listens on 127.0.01:80 and 192.168.0.1:80.
Code:
# netstat -anp|grep :80
tcp 0 0 xxx.xxx.xxx.xxx:80 0.0.0.0:*
LISTEN 8130/nginx: master
tcp 0 0 192.168.0.3:80 0.0.0.0:*
LISTEN 8130/nginx: master
tcp 0 0 192.168.0.2:80 0.0.0.0:*
LISTEN 8130/nginx: master
tcp 0 0 127.0.0.1:80 0.0.0.0:*
LISTEN 24007/httpd
tcp 0 0 192.168.0.1:80 0.0.0.0:*
LISTEN 24007/httpd
tcp 0 0 0.0.0.0:8082 0.0.0.0:*
LISTEN 24197/lighttpd
Respectfully,
Gary
Last edited: