LillyM_9417
Jul 18, 2012Altostratus
FIN packet
Hello,
We are using this irule to send the client request (who is ready to send its data) to servers.
This irule does not help us to block the following situation.
- when a client complete 3-way handshake but does not send any data then send FIN packet.
In that time, something happen like this, "F5 assumes that the last FIN packet is a data and forward this client request to the server"
How can we prevent from this problem?
===========
when CLIENT_ACCEPTED {
TCP::collect 8
}
when CLIENT_DATA {
set pay1 [TCP::payload 8]
binary scan $pay1 IA4 len1 trn1
}
================