ubuntu14.04静态ip地址与动态ip地址配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu14.04静态ip地址与动态ip地址配置相关的知识,希望对你有一定的参考价值。
有时我们希望Ubuntu14.04的ip地址为静态ip地址,使得ubuntu中的ip地址不变,这样会方便在嵌入式设备和主机Ubuntu进行用网口进行调试。
静态ip地址的配置方法:在/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
#iface eth0 inet dhcp
address 192.168.1.189
netmask 255.255.255.0
gateway 192.168.1.0
其中auto eth0 表示使用的是eth0网口
iface eth0 inet static 表示eth0的ip地址为静态ip地址,这样每次开机后ip地址都不会变。ip地址我们可以手动配置一个。
动态ip地址的配置方法:在/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
iface eth0 inet dhcp
address 192.168.1.189
netmask 255.255.255.0
gateway 192.168.1.0
其中auto eth0 表示使用的是eth0网口
iface eth0 inet dhcp 表示eth0的ip地址由dhcp服务器动态分配,一般让ubuntu上网的条件之一就是配置该项为由dhcp服务器动态分配ip地址的方式。联网成功后,dhcp会分配给ubuntu一个能上网的ip地址。下面的ip地址就可以随便设置了,因为是动态分配,则不以下面的address为主。
本文出自 “whylinux” 博客,请务必保留此出处http://whylinux.blog.51cto.com/10900429/1900593
以上是关于ubuntu14.04静态ip地址与动态ip地址配置的主要内容,如果未能解决你的问题,请参考以下文章