Forum Discussion
monica_74227
Nimbostratus
Jun 23, 2009intelligent SNAT generate errors
Dear all,
I write a iRule as the following:
when CLIENT_ACCEPTED {
if { [matchclass [IP::local_addr] equals $::Uni_class]} {
pool Uni_first_pool
}
elseif { [matchclass [IP::local_addr] equals $::CRT_class]} {
pool CRT_first_pool
}
else {
pool Default_gateway_pool
}
}
when LB_SELECTED {
if {[IP::addr [LB::server addr] equals 11.10.10.254] and [IP::addr [IP::client_addr] equals 10.6.3.4] } {
snat snat_uni_pool
}
elseif {[IP::addr [LB::server addr] equals 11.10.10.254] and [IP::addr [IP::client_addr] equals 10.6.3.5] } {
snat snat_uni_pool
}
elseif {[IP::addr [LB::server addr] equals 10.10.10.254] and [IP::addr [IP::client_addr] equals 10.6.3.4] } {
snat snat_crt_pool
}
elseif {[IP::addr [LB::server addr] equals 10.10.10.254] and [IP::addr [IP::client_addr] equals 10.6.3.5] } {
snat snat_crt_pool
}
else {
snat automap
}
}
however, that genertat some errors when I update with Webgui, just like the picture, I don't know what is wrong, thank you for you help!
- hoolio
Cirrostratus
Hi,when CLIENT_ACCEPTED { if { [matchclass [IP::local_addr] equals $::Uni_class]} { pool Uni_first_pool } elseif { [matchclass [IP::local_addr] equals $::CRT_class]} { pool CRT_first_pool } else { pool Default_gateway_pool } } when LB_SELECTED { if {([IP::addr [IP::client_addr] equals 10.6.3.4] or [IP::addr [IP::client_addr] equals 10.6.3.5]) and \ [IP::addr [LB::server addr] equals 11.10.10.254]}{ snatpool snat_uni_pool } elseif {([IP::addr [IP::client_addr] equals 10.6.3.4] or [IP::addr [IP::client_addr] equals 10.6.3.5]) and \ [IP::addr [LB::server addr] equals 10.10.10.254]}{ snatpool snat_crt_pool } else { snat automap } }
- monica_74227
Nimbostratus
thank you very much Aaron, I will try that! - monica_74227
Nimbostratus
hey Aaron, - hoolio
Cirrostratus
The backslash just escapes the newline character and allows you to break up long lines. Functionally, you can remove it with no difference.
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