每次在装ubuntu的时候,如果连上网络,到设置apt源的那步,总要等半天,所以我就拔掉网线,选择为暂不配置
装完之后要第一件事要配置ip,在配置好/etc/network/interfaces之后,也配置了/etc/resolv.conf
内网的机器都可以ping通但是ping外网的就是不行·~一直提示networkisunreachable
在增加一个缺省的网关后所有问题ok
我初学linux希望各位高手多多指教
我的配置如下:
配置静态IP地址
sudovi/etc/network/interfaces
内容如下:
autolo
ifaceloinetloopback
autoeth0
autoeth1
#ifaceeth1inetdhcp
ifaceeth1inetstatic
address192.168.1.8
netmask255.255.255.0
network192.168.1.0
broadcast192.168.1.255
geteway192.168.1.1
配置DNS
vi/etc/resolv.conf
增加内容:
nameserver192.168.1.1
naserver202.106.0.20
配置网关
routeadddefaultgw192.168.1.1
重新启动网络配置
/etc/init.d/networkingrestart
下载本文示例代码
阅读(893) | 评论(0) | 转发(0) |