在linux 辛辛苦苦装了Apache ,打开浏览器 http://localhost ,OK!
打IP http://192.168.1.141 ,OK!
我在windows 上打 http://192.168.1.141 , BAD! 打不开
原因分析:
1. 网络连接正常,ssh 连接正常,排除网络故障
3. 服务器可能在离线状态,找到 httpd.conf
Order Allow,Deny
Allow from all
Allow from all
处于开启状态.排除
3. 被防火墙挡掉了 ,windows的防火墙应该不会挡 80端口,试着把windows的防火墙(我用的comodo)关掉,不行肯定是 Linux的防火墙
a. 打开 /etc/sysconfig/iptables
b. 新加一行 -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
c. 然后 service iptables restart 重启 iptables
c. 然后 service iptables restart 重启 iptables
再打开http:// 192.168.1.141 ,Great!! 搞定 收工
相关推荐
下面小编就为大家带来一篇新装linux系统/etc/sysconfig目录下无iptables文件的解决方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
关于新版CenterOS7配置redis出现redisiptables错误的解决方法, 排除/etc/rc.d/init.d/iptables: No such file or directory 错误原因 , CentoOS7下配置redis并将端口通过防火墙解决方法;
iptables 手册 chm 格式 <br> 本文介绍了iptables,以便你可以领会iptables的精彩,文中不包含iptables或Netfilter在安全方面的 bug。如果你发现iptables(或其组成部分)任何bug或特殊的行为,请联系...
解决centos7的iptabels 文件丢失的问题。
### Centos离线安装iptables详解 #### 一、前言 在CentOS系统中,iptables是用于设置网络规则的重要工具之一。然而,在某些情况下,由于网络环境限制或安全考虑,我们可能无法通过在线方式安装iptables。本文将...
iptables 防火墙 linux
iptables的用法,用iptables封IP的方法,安装,启动,关闭
下面小编就为大家带来一篇iptables配置(/etc/sysconfig/iptables)操作方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
Kylin_Iptables防火墙配置方法
Android 流量防火墙是一种基于 Iptables 的防火墙解决方案,旨在限制单个应用的联网状态。Iptables 是一个功能强大的 IP 信息包过滤系统,可以用于添加、编辑和删除规则,这些规则是在做信息包过滤决定时,防火墙所...
iptables源码 iptables工具
iptables防火墙iptables防火墙iptables防火墙
iptables 源码包安装,编译linux内核
Linux内核中的网络数据包处理子系统被称为Netfilter,而iptables则是用于配置Netfilter的主要命令工具。本书涵盖了iptables用户空间工具版本1.2.7a,该版本支持Linux内核2.4版本,并且也覆盖了大部分2.6版本的功能。...
第一章序言部分除了第三...第五章和第六章是iptables命令使用方法的详细介绍。 第七章与第八章是实例讲解,对我们编写自己的规则很有指导意义的,强烈建议你看一看。 附录里有一些资源链接是很好的,相信你一定会喜欢。
#### 六、iptables常见问题及解决方法 - **无法访问内部服务**: 如果外部用户无法访问内部服务,请检查相应的iptables规则是否正确配置。 - **性能问题**: 复杂的iptables规则集可能会导致性能下降。定期审查和优化...
iptables-1.4.21-35.el7.i686.rpm和iptables-services-1.4.21-35.e
iptables iptables iptables iptables iptables iptables iptables iptables iptables iptables iptables iptables iptables iptables iptables iptables
iptables 是基于内核的防火墙,功能非常强大,iptables 内置了 filter,nat 和 mangle 三张表。filter 负责过滤数据包,包括的规则链有,input,output 和 forward;nat 则涉及到网络地址转换,包括的规则链有,...