在Nginx proxy_pass中禁用IPv6


18

我的服务器没有IPv6地址。

但是,当我将Nginx proxy_pass用于IPv4和IPv6的上游时,有时它会尝试使用IPv6发送传出请求:

2013/07/30 00:25:06 [error] 1930#0: *1482670 connect() to [AAAA:BBBB:C:DDD:E:F:GGG:HHH]:443 failed (101: Network is unreachable) while connecting to upstream, client: AA.BB.CC.DD, server: example.com, request: "GET /download/file HTTP/1.0", upstream: "https://[AAAA:BBBB:C:DDD:E:F:GGG:HHH]:443/download/file", host: "example.com"

如何在proxy_pass中为传出请求禁用IPv6?

nginx.conf:

upstream download {
  server download.example.com:443;
  keepalive 8;
}

location /download {
  proxy_set_header      X-Forwarded-For  $proxy_add_x_forwarded_for;
  proxy_set_header      Connection "";
  proxy_ignore_headers  X-Accel-Redirect;
  proxy_http_version    1.1;
  resolver              8.8.8.8;
  resolver_timeout      5s;
  proxy_pass            https://download;
}

nginx -V:

nginx version: nginx/1.4.2
built by gcc 4.7.2 (Debian 4.7.2-5)
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-mail --with-mail_ssl_module --with-file-aio --with-http_spdy_module --with-cc-opt='-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2' --with-ld-opt=-Wl,-z,relro --with-ipv6

操作系统:Debian Wheezy

Linux 3.2.0-4-amd64 #1 SMP Debian 3.2.46-1 x86_64 GNU/Linux

IP地址

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
    link/ether 6c:62:6d:7a:ea:af brd ff:ff:ff:ff:ff:ff
    inet XXX.XXX.XXX.XXX/27 brd XXX.XXX.XXX.XXX scope global eth0

这样做之后会发生这种情况sudo sysctl -w net.ipv6.bindv6only=0吗?
2013年

Flup,net.ipv6.bindv6only = 0于事无补
安东

那肯定看起来是错误的。您至少应具有IPv6本地链接地址。您或您的提供者对该服务器的配置进行了哪些更改?
迈克尔·汉普顿

我们仅添加了net.ipv6.conf.all.disable_ipv6 = 1。我们的提供商没有使用DHCP分配IPv6,因此必须手动配置。
安东

是否有任何方法可以使用nginx config专门解决此问题,而无需更改全局系统设置?
德米特里·普洛什金

Answers:



1

使用https网址resolver时,使用不适用于我proxy_pass。我不得不修改sysctl。

  1. 在中添加以下行/etc/sysctl.conf
    net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.lo.disable_ipv6 = 1 net.ipv6.conf.eth0.disable_ipv6 = 1 net.ipv6.conf.eth1.disable_ipv6 = 1 net.ipv6.conf.eth2.disable_ipv6 = 1 net.ipv6.conf.eth3.disable_ipv6 = 1
  2. 使用重启系统sysctl -p
  3. 使用重新启动nginx sudo nginx -s reload

解决了代理flickr的问题。
GaryBishop

它解决了我的问题,但是即使请求显然成功了,现在错误日志也显示了抱怨(99:无法分配请求的地址)。我只想弄清楚如何防止它尝试ipv6地址。
GaryBishop

将ipv6 = off与此一起添加到nginx中的解析器可解决此问题并消除了错误消息。
GaryBishop

0

以上两种解决方案都不适合我,似乎Nginx在某些特殊情况下使用了解析器定义,并且通常使用系统解析器解析IP。

我的最终解决方案是在/ etc / hosts中为代理主机定义一个IPv4,然后重新启动Nginx

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.