码迷,mamicode.com
首页 > Web开发 > 详细

ping: sendto: Network is unreachable

时间:2014-10-19 15:33:49      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:des   blog   http   color   io   ar   使用   strong   on   

在我的板子上ping路由上的IP的时候可以ping通,但是ping外网的IP的时候提示“ping: sendto: Network is unreachable”

后来使用route命令看了一下

# route

Kernel IP routing table

Destination     Gateway         Genmask         Flags Metric Ref    Use Iface

192.168.1.0     *               255.255.255.0           U          0      0        0      rausb0

发现网关(Gateway),是空着的没有设置,于是执行一下命令设置了网关:

# route add default gw 192.168.1.1

# route

Kernel IP routing table

Destination     Gateway         Genmask         Flags Metric Ref    Use Iface

192.168.1.0     *               255.255.255.0   U     0      0        0 rausb0

default         192.168.1.1     0.0.0.0         UG    0      0        0 rausb0

最后终于可以ping通外网了

# ping 119.75.217.56

PING 119.75.217.56 (119.75.217.56): 56 data bytes

64 bytes from 119.75.217.56: seq=0 ttl=52 time=38.349 ms

64 bytes from 119.75.217.56: seq=1 ttl=52 time=30.369 ms

64 bytes from 119.75.217.56: seq=2 ttl=52 time=30.541 ms

64 bytes from 119.75.217.56: seq=3 ttl=52 time=29.659 ms

64 bytes from 119.75.217.56: seq=4 ttl=52 time=29.786 ms

另外如果网络的其他信息没有设置好,也会出现这样的情况,可以参考如下设置(http://www.lslnet.com/linux/f/docs1/i57/big5378732.htm)

ifconfig lo 127.0.0.1

route add -net 127.0.0.0 netmask 255.255.255.0 lo

ifconfig eth0 192.168.10.0

route add -net 192.168.10.0 netmask 255.255.255.0

转自:http://blog.csdn.net/qingtingchen1987/article/details/7045068

ping: sendto: Network is unreachable

标签:des   blog   http   color   io   ar   使用   strong   on   

原文地址:http://www.cnblogs.com/nufangrensheng/p/4034936.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!