Although the NAT rules for routing port 80 through the router are fine, the same rules using port 443 do not route through.
Code: Select all
chain=dstnat dst-address=xxx.xxx.xxx.xx protocol=tcp action=dst-nat to-addresses=192.168.0.2 to-ports=80
chain=srcnat src-address=192.168.0.2 protocol=tcp action=src-nat to-addresses=xxx.xxx.xxx.xx to-ports=80
Code: Select all
chain=dstnat dst-address=xxx.xxx.xxx.xx protocol=tcp action=dst-nat to-addresses=192.168.0.2 to-ports=443
chain=srcnat src-address=192.168.0.2 protocol=tcp action=src-nat to-addresses=xxx.xxx.xxx.xx to-ports=443
The error clients get is; "The connection to 'www.our-domain.net' has terminated unexpectantly. Some data may have transferred."
How can I fix this?
Thank you in advance.
~James