QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 1111|回复: 6

请教一下,iptables问题

[复制链接]
发表于 2006-6-12 17:59:43 | 显示全部楼层 |阅读模式
我作了个sh文件,文件内容如下:
zerry:/home/jerry/Desktop# cat iptables.sh
#!/bin/sh
echo "1" > /proc/sys/net/ipv4/ip_forward
modprobe ip_tables
modprobe ip_nat_ftp
modprobe ip_nat_irc
modprobe ip_conntrack
modprobe ip_conntrack_ftp
modprobe ip_conntrack_irc
/sbin/iptables -F
/sbin/iptables -X
/sbin/iptables -Z
/sbin/iptables -F -t nat
/sbin/iptables -X -t nat
/sbin/iptables -Z -t nat
/sbin/iptables -P INPUT   DROP
/sbin/iptables -P OUTPUT  ACCEPT
/sbin/iptables -P FORWARD ACCEPT
/sbin/iptables -t nat -P PREROUTING  ACCEPT
/sbin/iptables -t nat -P POSTROUTING ACCEPT
/sbin/iptables -t nat -P OUTPUT      ACCEPT
/sbin/iptables -t nat -A POSTROUTING -o ppp0 -s 192.168.0.1/24 -j MASQUERADE
zerry:/home/jerry/Desktop#

我使用sh命令执行此文件后,我的linux主机不能上网了
 楼主| 发表于 2006-6-12 18:27:30 | 显示全部楼层
网内的机器能上网!可是主机不能上了!
回复

使用道具 举报

发表于 2006-6-13 09:45:51 | 显示全部楼层
192.168.0.0/24
回复

使用道具 举报

 楼主| 发表于 2006-6-13 11:19:31 | 显示全部楼层
问题没有解决!

网内的机器能上网!可是主机却不能上了!
回复

使用道具 举报

发表于 2006-6-13 12:43:24 | 显示全部楼层
route -n
贴出来看看,如果默认路由不是 ppp0 ,那就改成 ppp0:
route del default eth0
route add default ppp0
回复

使用道具 举报

 楼主| 发表于 2006-6-13 13:49:16 | 显示全部楼层
route add default ppp0 还是不行!
回复

使用道具 举报

 楼主| 发表于 2006-6-13 17:22:04 | 显示全部楼层
zerry:~# iptables
iptables v1.2.11: no command specified
Try `iptables -h' or 'iptables --help' for more information.
zerry:~# iptables --list
Chain INPUT (policy ACCEPT)
target     prot opt source               destination

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination
TCPMSS     tcp  --  anywhere             anywhere            tcp flags:SYN,RST/SYN tcpmss match 1400:1536 TCPMSS clamp to PMTU

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination
zerry:~# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
222.185.172.103 0.0.0.0         255.255.255.255 UH    0      0        0 ppp0
0.0.0.0         222.185.172.103 0.0.0.0         UG    0      0        0 ppp0
zerry:~#
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-2 14:19 , Processed in 0.043107 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表