LoginSignup
3
8

More than 5 years have passed since last update.

Apache httpd IPv4のみで通信

Last updated at Posted at 2013-10-17

netbios(samba)やbonjour(avahi)等で名前解決すると、IPv6で接続されることがある。
IPv6アドレスがマッチしないため、allowディレクティブ等が期待した動作をしなくなってしまう。

IPv6通信を遮断するには、Listenディレクティブを修正する。

httpd.conf
#Listen 80
#Listen *:80
Listen 0.0.0.0:80
3
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
8