ubuntu-server14.04 网络配置

由于在装系统的时候没有设置网络,所以我们在系统安装完成之后需要手动配置。服务器所在的环境是静态分配的ip。下面是配置日志: 
1,首先运行ifconfig命令,发现网卡没有启动,只有本地环回。 
2,查看服务器网卡:ifconfig -a 
发现有四个网卡分别是:em1, eth1, p1p1, p1p2 
3,加载网卡:ifconfig em1 up 
4,配置ip,掩码,网管。有两种选择,一种是配置文件,另一种是命令行 
***1,配置文件方式: 
编辑文件:/etc/network/interfaces 
添加下面内容: 
auto em1 
iface em1 inet static 
address 127.127.127.127 #示例ip 
netmask 255.255.255.0 
gateway 127.127.127.254

让后重新启动网卡: 
/etc/init.d/networking restart 
ifconfig em1 down 
ifconfig em1 up 
ifconfig #查看 
service networking restart #不用sudo 
如果不行,就用命令行 
***2,命令行方式 
ifconfig em1 127.127.127.127 netmask 255.255.255.0 
route add default gw 127.127.127.254 #添加网关 
重启网卡如上命令。

5,现在ping一下网关能通就好,然后设置DNS服务器,编辑文件: 
/etc/resolv.conf 添加如下: 
nameserver 114.114.114.114 #这个可以用 
重启网络,这样应该可以联网了。\



ubuntu16.04 server 无法联网

由于服务器上有四个网卡,不确定网线应该插哪个,所以导致了无法联网。

解决方法

  1. ifconfig -a 打印出所有网卡的信息
  2. ethtool -p 网口名 然后看哪个接口亮
  3. 把网线插到对应的接口
  4. sudo dhclient 网口名 自动获取ip地址
  5. ping 一下,看看是否成功 
    然后:
sudo vi /etc/network/interfaces
#在里面添加   
auto 网口名 #auto 网口名 开机自动连接网络
iface 网口名 inet dhcp   #manual表示使用固定ip,dhcp表述使用动态ip  
  • 1
  • 2
  • 3
  • 4
# demo of static ip
auto eth1   
iface eth1 inet static   
address 192.168.0.101   
netmask 255.255.255.0
gateway 192.168.0.2 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
# set dns
$ sudo vim /etc/resolv.conf
nameserver 202.112.14.21
nameserver 202.112.14.11
  • 1
  • 2
  • 3
  • 4

执行ethtool -p eth0时,eth0对应的网口的灯就会闪烁,你可以分别调用ethtool判断eth1,eth2对应的网口;注意要在不插网线的时候进行,否则看不出来是否因ethtool引起的闪烁;

参考文献 
http://www.cnblogs.com/yudar/p/4446975.html 
https://www.douban.com/group/topic/4385501/ 
how to get gateway info in ubuntu


你可能感兴趣的:(操作系统)