How can I see the the webserver is really forwarded?
Is there some kind of tool where I can see if the firewall redirects to the target IP.
Code:
### -- NAT en redirection -- ###
# ext_if IP address could be dynamic, hence ($ext_if)
nat on $ext_if from $localnet to any -> ($ext_if)
### [NAT] the VPN connections (for access to the remote secure networks)
nat on $int_if from $vpn_net0 to any -> $int_if
nat on $int_if from $vpn_net1 to any -> $int_if
### Redirect webserver
rdr on $ext_if proto tcp from any to any port { http https } -> $webserver