Hi All,

Is there a clean way to use sticky tables on ip and dst_port without sending a 
new header?

Right now I’m using the following:

frontend front
  bind *:28178-38178
  mode http
  http-request set-header X-Concat %[dst_port]_%[src]
  use_backend back

backend back
  mode http
  balance roundrobin
  http-request track-sc0 req.fhdr(X-Concat) table st_tab_30
  stick on req.fhdr(X-Concat) table st_tab_30
  stick match req.fhdr(X-Concat) table st_tab_30

is there a way to that without sending X-Concat header?
I tried to use “http-request del-header X-Concat” after the stick match line 
but then sticky sessions stop working


Thanks
Yossi

Reply via email to