Forum Discussion
Laudec_55181
Altostratus
Nov 19, 2012SRC and DST Match Irule for NATting
I have the following irule, using two datagroups. The DG_DEST datagroup has a value that is a snatpool name. I need to set the snatpoolname variable to this value. What is the best way to do that wit...
What_Lies_Bene1
Cirrostratus
Nov 21, 2012Can you remove the 'forward' command. If that doesn't work, add a bit more logging and another 'else' statement like so;
when CLIENT_ACCEPTED {
This iRule would NAT the source IP in the DG_SRC and match it to a destination in DG_DEST
and then snat to the snatpool defined in DG_DST as the value corresponding to the name.
if { [class match [IP::client_addr] equals "DG_SRC" ] } {
set snatip [class match -value [IP::local_addr] equals "DG_DST" ]]
if { not ($snatip equals "") } {
log local0. "[IP::client_addr] going to [IP::local_addr] got Natted to $snatip"
snat $snatip
return
}
else
log local0. "SNAT IP was empty"
}
else {
log local0. "[IP::client_addr] going to [IP::local_addr] did NOT get Natted!!!"
}
}
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects