-
问题描述如题:Ubuntu ping IP: connect:Network is unreachable
如图所示:
-
/etc/network/interface 文件描述如下
auto eth0 # 开机自动连接网络
iface eth0 inet static #static表示使用固定IP,dhcp表示动态IP
address xxx.xxx.xxx #本机IP地址
netmask xxx.xxx.xxx #子网掩码
gateway xxx.xxx.xxx #网关
解决方法:
1.配置ip,配置 /etc/network/interfaces 文件
配置静态IP地址
sudo vim /etc/network/interfaces
内容如下:
auto lo
iface lo inet loopback
iface eth0 inet static
address 172.16.15.97
netmask 255.255.248.0
gateway 172.16.15.253
auto eth0
2.然后是DNS,配置 /etc/resolv.conf
配置DNS
vim /etc/resolv.conf
增加以下内容:
nameserver 211.95.193.97
nameserver 211.92.8.161
3.增加默认网关
route add default gw 172.16.15.253
4.重新启动网络配置
sudo /etc/init.d/networking restart
附:
(几个名称解释)
eth0 eth1 网卡
netmask 网关
Genmask 网络掩码
Iface 设定使用的网络接口
设置网卡eth0 的IP地址和子网掩码
sudo ifconfig eth0 133.133.133.190 netmask 255.255.255.0------------------------------------
设置网关
sudo route add default gw 133.133.133.40