Hello, I am trying to map outgoing traffic from inner host to one of my outer IP adresses.
For example:
isp addr: 172.17.20.15 - 172.17.20.20
192.168.1.18 -> 172.17.20.18 as outgoing
all other hosts in 192.168.1.0/24 network should be mapped to 172.17.20.15
As for now I have got default source nat like:
rule-set nsw_srcnat {
from zone Internal;
to zone Internet;
rule nsw-src-interface {
match {
source-address 0.0.0.0/0;
destination-address 0.0.0.0/0;
}
then {
source-nat {
interface;
}
}
}
}
I can't figure out how to do it 😞
#sourcenat