配置Ubuntu的网络已经不是第一次了,今天遇到了个错误,以前从来没遇到过的,感觉很郁闷!在使用/etc/init.d/networking restart的时候,出现了
RTNETLINK answers: File exists表示很郁闷,然后ping了一下,提示网络不可达。看了一下路由表,发现没网关,最后使用命令加网关# route add default gw 1.1.1.254结果,又报错
SIOCADDRT: no such process. frustrating error.网上找了一些资料,也没得到解决,最后自己发现,配置文件写错了。
- root@node1:/etc/network# cat interfaces
- # This file describes the network interfaces available on your system
- # and how to activate them. For more information, see interfaces(5).
-
- # The loopback network interface
- auto lo
- iface lo inet loopback
-
- # The primary network interface
- auto eth0
- iface eth0 inet static
- address 1.1.1.1
- metmask 255.0.0.0
- gateway 1.1.1.254
- dns-nameservers 1.1.1.254
输入的时候,可能太快了,把netmask写成了metmask,小记一下!Linux使用PAM锁定多次登陆失败的用户RAID0+1和RAID5的性能测试结果相关资讯 Ubuntu使用教程
- Ubuntu使用教程:E: 无法获得锁 / (06/19/2014 17:15:12)
- Ubuntu使用教程 :让Trusty Tahr变 (05/07/2014 16:30:53)
- 怎样打开64位 Ubuntu 的32位支持功 (04/27/2014 17:15:36)
| - Ubuntu 11.04 环境指纹识别驱动的 (05/22/2014 09:57:26)
- Ubuntu 下disk清理保护 (05/01/2014 07:24:50)
- Ubuntu 14.04自动登录到桌面 (04/24/2014 14:00:53)
|
本文评论 查看全部评论 (0)