获取请求者的源IP

时间:2018-10-08 10:29:25

标签: nginx kubernetes gitlab kubernetes-ingress nginx-ingress

问题:

  • x-forwarded-for http标头仅显示127.0.0.1,而不是原始ip

设置

  • GKE
  • gitlab入口控制器

详细信息

我尝试用nginx CORS enablement修改进入规则,但没有成功。

以下是该服务的入口注释:

nginx.ingress.kubernetes.io/cors-allow-headers: X-Forwarded-For
nginx.ingress.kubernetes.io/cors-allow-methods: PUT, GET, POST, OPTIONS

这里是echoheaders应用程序的输出:

Hostname: backend-78dd9d4ffd-cwkvv

Pod Information:
    -no pod information available-

Server values:
    server_version=nginx: 1.13.3 - lua: 10008

Request Information:
    client_address=10.60.8.16
    method=GET
    real path=/
    query=
    request_version=1.1
    request_scheme=http
    request_uri=[REDACTED]

Request Headers:
    accept=text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8
    accept-encoding=gzip, deflate, br
    accept-language=en-GB,en-US;q=0.9,en;q=0.8
    cache-control=max-age=0
    connection=close
    cookie=_ga=[REDACTED]
    host=[REDACTED]
    upgrade-insecure-requests=1
    user-agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36
    x-forwarded-for=127.0.0.1 <--- why doesn't it show the source IP?
    x-forwarded-host=[REDACTED]
    x-forwarded-port=443
    x-forwarded-proto=https
    x-original-uri=/
    x-real-ip=127.0.0.1 <--- why doesn't it show the source IP?
    x-scheme=https

Request Body:
    -no body in request-

1 个答案:

答案 0 :(得分:2)

X-forwarded-for应该与Nginx入口控制器一起使用。这对我有用:

$ curl -H 'Host: foo.bar'  aws-load-balancer.us-west-2.elb.amazonaws.com/first


Hostname: http-svc-xxxxxxxxxx-xxxxx

Pod Information:
    node name:  ip-172-x-x-x.us-west-2.compute.internal
    pod name:   http-svc-xxxxxxxxx-xxxxx
    pod namespace:  default
    pod IP: 192.168.x.x

Server values:
    server_version=nginx: 1.13.3 - lua: 10008

Request Information:
    client_address=192.168.x.x
    method=GET
    real path=/first
    query=
    request_version=1.1
    request_uri=http://foo.bar:8080/first

Request Headers:
    accept=*/*
    connection=close
    host=foo.bar
    user-agent=curl/7.58.0
    x-forwarded-for=x.x.x.x <- public IP address
    x-forwarded-host=foo.bar
    x-forwarded-port=80
    x-forwarded-proto=http
    x-original-uri=/first
    x-real-ip=x.x.x.x < - same IP as x-forwarded-for
    x-request-id=xxxxxxxxxxxxxxxxxx
    x-scheme=http

Request Body:
    -no body in request-

您可以尝试以下操作:

  • 如果要启用CORS,则还需要启用注释:

    nginx.ingress.kubernetes.io/enable-cors: "true"
    
  • 入口控制器上的nginx有一个use-forwarded-headers配置选项,可能需要启用。这将在您的nginx入口控制器使用的ConfigMap上启用。

相关问题