码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu16.04网卡配置

时间:2020-12-25 11:49:47      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:无法   内容   ip地址   名称   targe   com   target   config   通过   

新安装的Ubuntu16.04系统容易出现无法连接有线网络的问题,主要是因为网卡配置不完善,下面通过实操讲解如何解决该问题。

1. 查看网络设备

ifconfig

发现只有enp2s0lo,没有eth0,一般Linux有线网络使用的是eth0网卡进行网络连接。

2. 修改网卡为eth0

sudo vim /etc/default/grub

找到GRUB_CMDLINE_LINUX=""
改为GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"
然后sudo grub-mkconfig -o /boot/grub/grub.cfg
重启,执行ifconfig可以看到,网卡名即变成了eth0和wlan0

3. 设置eth0网卡的连接方式

打开ubuntu的/etc/network/interfaces文件默认的内容如下:

auto lo 
iface lo inet loopback 

在后面添加内容

(1)获取动态配置:

auto eth0 
iface eth0 inet dhcp 

(2)获取静态配置:

auto eth0
iface eth0 inet
static address 192.168.0.1
netmask 255.255.255.0
gateway 192.168.0.1

重启,再一次执行ifconfig,可以看到eth0网卡已经有inet addr、Bcast、Mask、inet6 addr等ip地址。

参考资料

[1]ubuntu16.04配置网卡[https://blog.csdn.net/stay_zezo/article/details/80718369]
[2]Ubuntu网卡服务重新启动,设置 DNS和主机名[https://jingyan.baidu.com/article/9113f81b7995df2b3214c702.html]
[3]ubuntu16.04修改网卡名称enp2s0为eth0[http://www.voidcn.com/article/p-dcdiwcqz-xe.html]

Ubuntu16.04网卡配置

标签:无法   内容   ip地址   名称   targe   com   target   config   通过   

原文地址:https://www.cnblogs.com/JasonCeng/p/14163386.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!