SERVER_CONNECTED

Description

When a fastL4 profile is used on an attached Virtual Server, this iRule event is raised on the emission of the first segment of the server-side flow (e.g., when the TCP SYN segment is sent toward a pool member, or on the first server-side UDP segment). When the Virtual Server is in full-proxy mode (e.g., when a Standard Virtual Server is used), this event is raised on the emission of the first segment for connectionless L4 protocols (e.g., UDP), or on the completion of connection setup for connection-oriented L4 protocols. For TCP, for example, this occurs when the three-way handshake is completed with the target pool member.

Examples

when SERVER_CONNECTED {
  log local0. "FTP connection from[IP::client_addr]:[TCP::client_port]. \
    Mapped to [serverside {IP::local_addr}]:[serverside {TCP::local_port}] \
    -> [IP::server_addr]:[serverside {TCP::remote_port}]"
}