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

原文地址:http://blog.51cto.com/superxing/2093026

时间: 2024-10-05 21:42:11

Ubuntu设置静态IP以及DNS的相关文章

[Ubuntu] 如何设置静态 IP 和 DNS

要设置 IP 和 DNS 解析服务器,编辑 /etc/network/interfaces: # interfaces(5) file used by ifup(8) and ifdown(8) auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.1.6 gateway 192.168.1.1 netmask 255.255.255.0 dns-nameservers 192.168.1.

CentOS7修改设置静态IP和DNS

当前位置: 主页 > CentOS入门 > 系统配置 > CentOS7修改设置静态IP和DNS 时间:2016-02-22 00:55来源:blog.csdn.net 作者:get_set的专栏 举报 点击:4048次 最近因为学习Puppet,用虚拟机装了个CentOS,使用的NAT的网络模式,为了防止再次启动系统的时候网络IP发生变化,因此设置静态IP和DNS. 由于CentOS是最小化安装,没有ifconfig命令,因此可以采用ip命令查看. 查看IP分配情况: # ip add

CentOS7 修改设置静态IP和DNS

最近因为学习Puppet,用虚拟机装了个CentOS,使用的NAT的网络模式,为了防止再次启动系统的时候网络IP发生变化,因此设置静态IP和DNS. 由于CentOS是最小化安装,没有ifconfig命令,因此可以采用ip命令查看. 查看IP分配情况: # ip addr 发现里边只有一个LOOPBACK的127.0.0.1的回环地址,原来CentOS刚安装后默认是不启动网络连接的. 设置IP和DNS主要在下面的配置文件中修改: # vi /etc/sysconfig/network-scrip

Ubuntu中设置静态IP和DNS(转载)

原文地址:http://blog.sina.com.cn/s/blog_669421480102v3bb.html VMware 中使用网络,对虚拟机设置静态IP: 在Ubuntu中设置静态IP共两步:1>设置IP:2>设置DNS 1>设置IP    编辑 /etc/network/interface文件:       sudo vi /etc/network/interface auto eth0    iface eth0 inet static              //  指

ubuntu server静态IP和DNS服务器设置

Ubuntu的网络参数保存在文件 /etc/network/interfaces中, 默认设置使用dhcp,动态IP获取. 设置静态ip的方法如下: 1) 编辑 /etc/network/interfaces 1.1)将dhcp 一行屏蔽 # The primary network interface auto eth0 #iface eth0 inet dhcp 1.2)添加和静态ip有关的参数 # The primary network interface iface eth0 inet s

虚拟机ubuntu设置静态IP与主机、外网互ping配置流程

方案一.VMnet8(NAT模式) 1.选择自定义模式,VMnet8(NAT模式) 2.进入虚拟机,设置静态IP之前确认三者可互ping通,命令ifconfig,查看当前的IP 3.主机通过命令ipconfig查看主机的IP地址,注意是VMnet8的IP 4.配置虚拟机. 5.设置静态IP,命令vim /etc/network/interfaces ,添加以下命令: auto eth0iface eth0 inet staticaddress 10.4.99.128(设置的IP地址)gatewa

ubuntu下静态IP、DNS配置

一.配置ip ubuntu的网络配置信息放在 /etc/network/interfaces 中, 如果配置动态获取ip,则在上述文件中加入以下内容: auto eth0 iface eth0 inet dhcp 如果配置静态ip,则添加如下内容: auto eth0 iface eth0 inet static address 192.168.33.201 netmask 255.255.255.0 gateway 192.168.33.1 要是配置生效,需要重启网卡: ifconfig et

Centos6.2设置静态ip和dns

参考了如下文章:https://gist.github.com/fernandoaleman/2172388http://www.lifelinux.com/how-to-configure-static-ip-address-on-centos/http://www.ehowstuff.com/how-to-configure-static-ip-address-on-centos-6-2-linux-server/http://www.liurongxing.com/centos-dns-i

Ubuntu 设置静态ip地址

1. 找到文件并作如下修改: sudo vim /etc/network/interfaces 修改如下部分: auto eth0iface eth0 inet staticaddress 192.168.0.117gateway 192.168.0.1 #这个地址你要确认下 网关是不是这个地址netmask 255.255.255.0network 192.168.0.0broadcast 192.168.0.255 2. 修改dns解析 因为以前是dhcp解析,所以会自动分配dns服务器地址