Ubuntu设置静态IP以及DNS
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu设置静态IP以及DNS相关的知识,希望对你有一定的参考价值。
Introduce
安装虚拟机无法DHCP获取地址,搜了点资料设置成功,记下来以后好找文档。
设置静态IP
vi /etc/network/interfaces
# The primary network interface
auto eth0 #表示让网卡开机自动挂载eth0
iface eth0 inet static
address 192.168.2.1
gateway 192.168.2.254
netmask 255.255.255.0
/etc/init.d/networking restart
设置DNS
vi /etc/resolvconf/resolv.conf.d/base
#添加
nameserver 8.8.8.8
nameserver 8.8.4.4
resolvconf -u
以上是关于Ubuntu设置静态IP以及DNS的主要内容,如果未能解决你的问题,请参考以下文章
ubuntu 15.10 设置静态ip 分配固定ip 设置dns 设置网关 命令行配置ip 固定ip不生效怎么办