I need some help setting up a webserver in a dmz.
The webserver needs to go in the dmz (192.168.10.17) but I have no clue in how to set up the rules to allow traffic to it. I have a static public IP 80.200.x.x
The clients access the webserver on port 211.
I did the following:
- added a 3rd interface called DMZ 192.168.10.17
- defined a network called web_server_private with it's internal IP on the DMZ (192.168.10.17 / 255.255.255.255)
- defined a network called public_IP with my public IP (80.200.x.x)
- defined a service: web_service tcp S-port 1024:65535 and D-port 211
- defined a DNAT rule called web_server_dnat which sends all packets for the public IP to the server in the DMZ (all -> public_IP / HTTP web_server_private).
- defined a packet rule Any - HTTP - web_server_private - allow
Is this correct?
The clients who need to acces my webserver are using port 211 does this matter?
I could replace the DNAT rule
All -> public_IP / HTTP web_server_private
with
All -> public_IP / web_service web_server_private ?
Or maybe change the packet rule from
Any - HTTP - web_server_private - allow
to
Any - web_service - web_server_private - allow ?
thanks
This thread was automatically locked due to age.