linux做软路由的怪问题

linux做软路由的怪问题

linux作为软路由搭设了一个广域网,前些日子还正常,最近突然
发现有两个点的路由能看到,但无法PING到,请问各位高手这是什
么原因。先谢谢了。      
如果对方不让ping了,你就没办法了,但是telnet对方的端口还是有反应的      
谢谢答复。但不会不让PING吧,那台机器是锁在屋子里,没人会去动的。
难道运行一段时间就会自动不让PING吗?      
1./etc/ppp/options.ttyS2
19.1.49.2:19.1.49.1

2./etc/ppp/options.ttyS3
19.1.50.2:19.1.50.1

3./etc/ppp/options.ttyS4
19.1.51.2:19.1.51.1

4.  /etc/ppp/options.ttyS5
19.1.52.2:19.1.52.1

5./etc/ppp/ip-up
rem all

6./etc/rc.d/rc.local
#start gated
if [ -f /etc/gated.conf -a -f /usr/sbin/gated ]; then
/usr/sbin/gated ; echo -n "gated"
fi

7./etc/gated.conf
traceoptions "/var/log/gated.trace" replace size 750k files 10 state general;
routerid 19.1.49.2;
rip no;
egp no;
bgp no;
ospf yes {
         area 1 {
                 networks {
                        198.100.124.0 mask 255.255.255.0 restrict;
                        19.1.50.0 mask 255.255.255.0 restrict;
                        19.1.52.0 mask 255.255.255.0 restrict;
                          } ;
                 interface 198.100.124.22 nonbroadcast cost 1 {
                         enable;
                         retransmitinterval 5;
                         transitdelay 1;
                         priority 2;
                         hellointerval 10;
                         routerdeadinterval 40;
                         } ;
             interface 19.1.50.1 cost 5{
                enable;
                retransmitinterval 5;
                transitdelay 1;
                priority 2;
                hellointerval 10;
                routerdeadinterval 40;
                };
             interface 19.1.52.1 cost 5{
                enable;
                retransmitinterval 5;
                transitdelay 1;
                priority 2;
                hellointerval 10;
                routerdeadinterval 40;
                };
         } ;

backbone {
                 networks {
                        19.1.49.0 mask 255.255.255.0 restrict;
                        19.1.51.0 mask 255.255.255.0 restrict;
                          } ;
             interface 19.1.49.1 cost 5{
                enable;
                retransmitinterval 5;
                transitdelay 1;
                priority 2;
                hellointerval 10;
                routerdeadinterval 40;
                };
             interface 19.1.51.1 cost 5{
                enable;
                retransmitinterval 5;
                transitdelay 1;
                priority 2;
                hellointerval 10;
                routerdeadinterval 40;
                };
         } ;
} ;
export proto ospfase type 1 {
         proto direct {
                 ALL metric 1;  } ;
} ;

8.  /etc/sysconfig/network-scripts/ifcfg-eth0
#define eth0 ip address
DEVICE=eth0
IPADDR=198.100.124.22
NETMASK=255.255.255.0
NETWORK=198.100.124.0
BROADCAST=198.100.124.255
ONBOOT=yes