美文网首页
Ubuntu16.04固定IP地址简单教程

Ubuntu16.04固定IP地址简单教程

作者: ___Kevin | 来源:发表于2021-01-02 21:40 被阅读0次

Step1:ifconfig查看网卡名,如enp0s3

Step2:修改文件将ip地址设置为192.168.0.10(举例)

Step3:修改/etc/network/interfaces
修改为:
auto enp0s3
iface enp0s3 inet static
address 192.168.0.10
netmask 255.255.255.0
gateway 192.168.0.1

dns-nameservers 202.96.209.133

dns-nameservers 8.8.8.8

Step4:重启网络/etc/init.d/networking restart

相关文章

网友评论

      本文标题:Ubuntu16.04固定IP地址简单教程

      本文链接:https://www.haomeiwen.com/subject/lrdyoktx.html