Ubuntu 14.04 静态IP设置

1. 编辑/etc/network/interfaces

vim /etc/network/interfaces

2.将以下五项添加到/etc/network/interfaces中

  • Static declaration (using <interface> chosen above): iface <interface> inet static
  • Static IP address: address <chosen ip>
  • Network gateway: gateway <gateway ip>
  • Netmask / subnet: netmask <netmask ip>
  • DNS nameservers: dns-nameservers <dns ip’s>

3. 修改后文件如下

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

auto eth0

# The primary network interface
iface eth0 inet static
address 192.168.1.8
gateway 192.168.1.1
netmask 255.255.255.0
dns-nameservers 223.5.5.5 223.6.6.6

4. 重启网络服务

service networking restart

时间: 2024-10-07 05:26:16

Ubuntu 14.04 静态IP设置的相关文章

Ubuntu 14.04静态ip设置

找到文件interfaces,路径:/etc/network/interfaces 打开interfaces文件,看到以下内容: auto loiface lo inet loopback auto dsl-provideriface dsl-provider inet ppppre-up /sbin/ifconfig eth0 up # line maintained by pppoeconfprovider dsl-provider auto eth0iface eth0 inet manu

Vmware下Ubuntu 14.04静态IP地址的设置方法

一.环境 宿主机 Win 8.1 虚拟机工具 VMware 10.0 虚拟主机系统 Ubuntu 14.04 二.说明 这里需要注意的是:VMware对于VMnet8采用如下规则(192.168.174.0网段为例): 第一个地址(192.168.174.1):静态地址,分配给宿主机的VMware Network Adapter VMnet8适配器使用: 第二个地址(192.168.174.2):静态地址,分配给NAT设备使用: 192.168.174.3 - 192.168.174.127:静

【转】如何在Ubuntu 14.04 LTS上设置Nginx虚拟主机

介绍 转自http://www.pandacademy.com/%E5%A6%82%E4%BD%95%E5%9C%A8ubuntu-14-04-lts%E4%B8%8A%E8%AE%BE%E7%BD%AEnginx%E8%99%9A%E6%8B%9F%E4%B8%BB%E6%9C%BA/#i-3 使用Nginx Web服务器时,可以使用server blocks(类似于Apache中的虚拟主机)来封装配置详细信息,并托管单个服务器的多个域. 在本教程中,我们将讨论如何在Ubuntu 14.04服

Linux -&gt;&gt; UBuntu 14.04 LTE下设置静态IP地址

UBuntu 14.04 LTE设置IP地址和一些服务器版本的Linux还不太一样.以Centos 7.0为例,网卡IP地址的配置文件应该是/etc/sysconfig/network-scripts/ifcfg-eth0 首先UBuntu 14.04 LTE下面IP地址的配置文件是/etc/network/interfaces. [email protected]:/etc/network$ cat /etc/network/interfaces # interfaces(5) file us

ubuntu 14.04英文环境设置成中文

适用于ubuntu 14.04英文版的系统,其它版本的设置应该是大同小异的. 进入ubuntu系统,在顶部齿状标志找到system... 2.在personal找到Language Support 3.进入Language Support后,在language的页面中点击Install/Remove Languages... 4.在弹出的框中,找到Chinese(simplified),并打上勾,点击Apply Changes. 5.等系统安装完语言包后(在电脑联网的前提下),在Language

Ubuntu 14.04.4 LTS设置DNS

Ubuntu 14.04.4 LTS中DNS信息是由/etc/resolv.conf提供的,它是每次开机时,由/sbin/resolvconf生成的 /etc/resolv.conf是/run/resolvconf/resolv.conf的符号链接 #ls -al /etc/resolv.conf #lrwxrwxrwx 1 root root 29 Mar  4 18:57 /etc/resolv.conf -> ../run/resolvconf/resolv.conf 在文件/etc/re

ubuntu12.04静态ip设置问题

由于linux知识不是学的很深,所以仅代表我自己的设置成功总结. 第一步是设置/etc/network/interfaces 增加静态ip设置 auto eth0iface eth0 inet static    #配置为静态IPaddress 192.168.1.70   #静态IP为192.168.1.70   netmask 255.255.255.0   #子网掩码#network 192.168.1.0     #所在网络#broadcast 192.168.1.255   #广播地址

Ubuntu Server 12.04(14.04) 静态IP简洁配置

1.配置静态IP地址: # vim /etc/network/interfaces 原内容有如下4行:auto loiface lo inet loopback auto eth0iface eth0 inet dhcp 以上表示默认使用DHCP分配IP,修改为如下: auto loiface lo inet loopback # The primary network interfaceauto eth0#iface eth0 inet dhcp iface eth0 inet statica

Ubuntu16.04 静态IP设置

为VMware虚拟机内安装的Ubuntu 16.04设置静态IP地址NAT方式 1.安装环境 VMware 12 Ubuntu 16.04 x86_64 2.在VMware中,配置网络环境 VMware在默认安装完成之后,会创建三个虚拟的网络环境:VMnet0.VMnet1和VMnet8.其类型分别为:桥接网络,Host-only和NAT.其中,NAT表示VMWware内安装的Ubuntu将会在一个子网中,VMware通过网络地址转换,通过物理机的IP上网. 这里,我们选择NAT方式,来实现Ub