Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

ashish_solanki's avatar
Mar 01, 2019

iSNAT -- Intelligent SNAT

Hi All,

 

Can you please help me understand what is intelligent SNAT and how it works and how we can configure in LTM.

 

Thanks in Advance!!

 

1 Reply

  • An intelligent SNAT is just a SNAT applied using an iRule.

    An example would be like the following. This translates the source IP of 1.2.3.4 to 2.2.2.2

    when CLIENT_ACCEPTED { 
        if { [IP::addr [IP::client_addr] equals 1.2.3.4] } {
            snat 2.2.2.2
        }