如何获取 Tornado 请求的客户端 IP?
我有一个用于传入 post()
的 RequestHandler
对象。如何找到发出请求的客户端的IP?我浏览了 RequestHandler
的大部分方法和属性,似乎遗漏了一些东西。
I have a RequestHandler
object for incoming post()
s. How can I find the IP of the client making the request? I've browsed most of RequestHandler
's methods and properties and seem to have missed something.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
RequestHandler.request.remote_ip
(来自 RequestHandler 的实例)您可以检查响应,如下所示:
RequestHandler.request.remote_ip
(from RequestHandler's instance)you can inspect the response like:
mykhal 的答案是正确的,但是有时您的应用程序将位于代理后面,例如,如果您使用 nginx 和 UWSGI,并且您总是会得到类似
127.0.0.1
的远程 IP。在这种情况下,您还需要检查标头,例如:编辑 2019 年 10 月 17 日:包括 AWS 负载均衡器等使用的常用标头
X-Forwarded-For
。mykhal's answer is right, however sometimes your application will be behind a proxy, for example if you use nginx and UWSGI and you will always get something like
127.0.0.1
for the remote IP. In this case you need to check the headers too, like:Edit Oct 17th, 2019: include the commonly used header
X-Forwarded-For
which is used by AWS load balancers amongst others.