利联科技:Ubuntu的网卡配置网络网络教程

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利联科技:Ubuntu的网卡配置网络网络教程相关的知识,希望对你有一定的参考价值。

1、设置IP地址、网关

nano /etc/network/interfaces /etc/network/interfacesbak #备份原有配置文件

nano /etc/network/interfaces #编辑网网卡配置文件

auto lo

iface lo inet loopback

auto eth0 #开机自动连接网络

iface eth0 inet static #static表示使用固定ip,dhcp表述使用动态ip

address 192.168.1.10 #设置ip地址举例为192.168.1.10

netmask 255.255.255.0 #设置子网掩码

gateway 192.168.1.1 #设置网关

ctrl+o #保存配置

ctrl+x #退出

2、设置dns

cp /etc/resolv.conf /etc/resolv.confbak #备份原有dns配置文件

nano /etc/resolv.conf #编辑配置文件,添加以下内容

nameserver 8.8.8.8 #设置首选dns

nameserver 8.8.4.4 #设置备用dns

ctrl+o #保存配置

ctrl+x #退出

3、重启网络

/etc/init.d/networking restart #重启网络

至此,IP地址、网关、DNS配置完成,现在系统已经可以上网了。

如需了解更多有关于Ubuntu知识点,可关注利联科技的网络安全方面。有更多关于服务器内的知识点在等着你发掘

以上是关于利联科技:Ubuntu的网卡配置网络网络教程的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu 网卡配置命令

ubuntu网卡配置问题(急急急)

ubuntu20.04配置网卡gateway4报错

Linux网络配置之虚拟网卡的配置(ubuntu)

ubuntu网络配置文件在哪里

ubuntu网卡不配置ip怎么启动网卡