Linux 路由ping不通

发布于 2022-09-07 11:30:00 字数 2801 浏览 9 评论 0

我有两台linux rhel5x64, rhel5x86, 两台机器都有两块网卡,我打算用rhel5 x64作路由,rhel5 x86 通过rhel5 x64 上网,可是就是通不过:
rhel5 x64 两块网卡 eth0:   155.35.99.99   连在公司内网
                    eth1:  我设的IP: 192.168.1.10 和rhel5 x86 的 eth1 直连
rhel5 x86 两块网卡 eth0: 155.35.99.98  原来连在公司内网,现在我把网线断了
                    eth1:  我设的IP: 192.168.1.11 和rhel5 x64 的 eth1 直连

在rhel5 x64:
[root@qa6202amd-2 rc.d]# cat /etc/rc.d/router
#!/bin/bash

echo "1" > /proc/sys/net/ipv4/ip_forward
INET_IFACE="eth0"
INET_IP="155.35.99.99"
LAN_IFACE="eth1"
LAN_IP="192.168.1.10"
LAN_IP_RANGE="192.168.1.0/255"

IPT="/sbin/iptables"

/sbin/depmod -a
/sbin/modprobe ip_tables
/sbin/modprobe iptable_nat
/sbin/modprobe ip_nat_ftp
/sbin/modprobe ipt_LOG

$IPT -P INPUT ACCEPT
$IPT -P FORWARD ACCEPT
$IPT -P OUTPUT ACCEPT
$IPT -t nat -P PREROUTING ACCEPT
$IPT -t nat -P POSTROUTING ACCEPT
$IPT -t nat -P OUTPUT ACCEPT

for TABLE in filter nat mangle ; do
$IPT -t $TABLE -F
$IPT -t $TABLE -X
done

$IPT -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT

for DNS in $(grep ^n /etc/resolv.conf|awk '{print $2}'); do
$IPT -A INPUT -p udp -s $DNS --sport domain -j ACCEPT
done

if [ "$INET_IFACE"=PPP0 ]; then
$IPT -t nat -A POSTROUTING -o $INET_IFACE -j MASQUERADE
else
$IPT -t nat -A POSTROUTING -o $INET_IFACE -j SNAT --to $INET_IP
fi

在rhel5 x64能直接通过 ssh 192.168.1.11 登上rhel5 x86, 可是登上去之后 ping 155.35.99.99
[root@laoku01-rhel5-1 ~]# ping 155.35.99.99
PING 155.35.99.99 (155.35.99.99) 56(84) bytes of data.
From 155.35.99.99 icmp_seq=2 Destination Host Unreachable
From 155.35.99.99 icmp_seq=3 Destination Host Unreachable
From 155.35.99.99 icmp_seq=4 Destination Host Unreachable

像是我的路由没有设置好,哪里的问题呢?

然后在非路由linux rhel5x86 上,我删除了路由155.35.0.0,结果ping变成了"Network is unreachable":
#ip route
192.168.1.0/24 dev eth1  proto kernel  scope link  src 192.168.1.11
155.35.0.0/16 dev eth0  proto kernel  scope link  src 155.35.99.98
# ip route delete 155.35.0.0/16
# ip route
192.168.1.0/24 dev eth1  proto kernel  scope link  src 192.168.1.11
# ping 155.35.99.99
connect: Network is unreachable

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文