gpt4 book ai didi

linux - 如何配置我的 apache2 网络服务器以允许从 192.168 内的任何内容进行访问?

转载 作者:太空宇宙 更新时间:2023-11-04 12:57:00 26 4
gpt4 key购买 nike

好的,我已经让我的 apache 网络服务器运行了一段时间,而且一切都很顺利。但是,我只是尝试通过 wifi 访问它:

Device running the web server: 192.168.0.99
Me: 192.168.1.8

192.168.0.* 是局域网连接。 192.168.1.* 是无线连接。

我已经试过了:

<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
Allow from 192.168
Allow from 10
</Directory>

然后重新启动了 apache,但一无所获。有什么建议吗?

如果需要任何更多信息,请询问我,我会添加。

补充说明:

  1. 如果我在同一范围内,我可以访问它,例如192.168.1.6
  2. 我从任何尝试访问的设备收到连接超时错误

最佳答案

可能需要使用一些 iptables 命令。检查被阻止的 ip

 iptables -L INPUT -v -n

允许家里的所有ips:

 iptables -A INPUT -i eth1 -m iprange --src-range 192.168/16 -j ACCEPT

这是一篇包含更多信息的文章:

http://www.cyberciti.biz/faq/linux-howto-check-ip-blocked-against-iptables/

关于linux - 如何配置我的 apache2 网络服务器以允许从 192.168 内的任何内容进行访问?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35461947/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com