forward

Description

Sets the connection to forward IP packets. This is strict forwarding and will bypass any pool configured on the virtual server.
The request will be forwarded out the appropriate interface according to the routes in the LTM routing table. No destination address or port translation is performed.

Syntax

forward

forward

  • Sets the connection to forward IP packets, bypassing load balancing.

Examples

when CLIENT_ACCEPTED {
  if { [class match [IP::client_addr] equals my_hosts_class]} {
    snat 192.168.100.12
  } else {
    forward
  }
}