<div dir="ltr">Hi folks. I'm in the process of trying to upgrade our current v3 config to v4+ for upgrading to Varnish 5. <div><br></div><div>In my old v3 config, I use the XFF header to change the client.identity if it is present.</div><div><br></div><div><div>    # For session-persistence, set a client identity.</div><div>    # We're using the client's IP for this to ensure server-persistence.</div><div>    if (req.http.X-Forwarded-For) {</div><div>        set client.identity = req.http.X-Forwarded-For;</div><div>    } else {</div><div>        set client.identity = client.ip;</div><div>    }</div></div><div><br></div><div>It is important that a request from one remote client goes to the same backend every time, when possible. Do I still need to deal with this, or will this be handled transparently in some way?</div><div><br></div><div>I suspect I'll have more questions as I go along, so I apologise in advance for the spam :)</div><div><br></div><div>thanks,</div><div><br></div><div>Mark</div></div>