I think you misunderstood me. This is how i have it set up currently:
Note that eth0
is my WAN interface.
nat {
destination {
rule 10 {
description "HTTP/S"
destination {
port 80,443
}
inbound-interface eth0
protocol tcp
translation {
address xxx.xxx.1.10
}
}
}
}
This works fine for external connections.
But if i make a request to the WAN-IP on port 80/443 from inside my network the NAT rule does not apply because the incoming interface is not bond0.1
(my internal interface).