Forum Discussion
Leav97
Aug 14, 2019Altocumulus
iRule to verify node is member of pool and passing the pools health check
I have an irule that uses a table to determine which node a client should use. I'd like to have the rule double check the node is passing health checks and is a member of a pool. Just as a precauti...
- Sep 09, 2019
when SERVER_CONNECTED {
set TargetNode [table lookup tbltst[TCP::local_port]]
set ActiveNode [active_members -list test-pool]
if {$TargetNode eq "" } {
return
}
if {$ActiveNode contains $TargetNode } {
node $TargetNode
}
}
Leav97
Sep 09, 2019Altocumulus
when SERVER_CONNECTED {
set TargetNode [table lookup tbltst[TCP::local_port]]
set ActiveNode [active_members -list test-pool]
if {$TargetNode eq "" } {
return
}
if {$ActiveNode contains $TargetNode } {
node $TargetNode
}
}
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