Forum Discussion
mci_bofh_8164
Nimbostratus
Aug 07, 2007iRule redirect based on port
All,
I am trying to redirect to two different hosts base on port number. One server is hosting SMTP and the other POP3. The following rule seems valid but dosen't seem to work. Any suggestions?
when CLIENT_DATA {
if { [TCP::remote_port] contains "110" } {
pool POP3
}
elseif { [TCP::remote_port] contains "25" } {
pool SMTP
} else {
discard}
}
- Deb_Allen_18Historic F5 Account(Moved post to iRules v9.x forum.)
when CLIENT_ACCEPTED { if {[TCP::remote_port] == 110} { pool POP3 } elseif {[TCP::remote_port] == 25} { pool SMTP } else { discard } }
- Al_Carandang_11
Nimbostratus
If the F5 is receiving the request, shouldn't the rule examine TCP::local_port on the client side? I think it would be TCP::remote port on the server side. - Thomas_Powers
Nimbostratus
Why don't you use 2 separate virtual servers (with the same IP and different ports) with each pointing to a different pool?
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