<div dir="ltr">Is there a way to change client.ip?<div><br></div><div>For example, I would like to set up an ACL to block certain IPs, but since the instances are behind a load balancer the only thing I have to work with is the x-forwarded-for header. I've tried something like this:</div>

<div><br></div><div><div>sub vcl_recv {</div><div>  if (req.http.X-Forwarded-For) {</div><div>    set client.ip = req.http.X-Forwarded-For;</div><div>  }</div><div>}</div><div><br></div><div>But of course that kind of thing doesn't compile.</div>

<div><br></div><div>Can someone please advise me on this issue or the broader question about implementing ACLs via x-forwarded-for headers for those of us stuck behind another load balancer?</div><div dir="ltr"></div>
</div></div>