ping: sendto: Network is unreachable【轉】


本文轉載自:http://blog.sina.com.cn/s/blog_640531380102wmzb.html

在我的板子上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


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM