网站首页 语言 会计 电脑 医学 资格证 职场 文艺体育 范文
当前位置:书香门第 > 计算机 > 操作系统

Ubuntu Linux系统下设置Static IP的方法

栏目: 操作系统 / 发布于: / 人气:2.02W

Ubuntu的网络参数保存在文件 /etc/network/interfaces中,默认设置使用dhcp,内容如下:

Ubuntu Linux系统下设置Static IP的方法

# The primary network interface

auto eth0

iface eth0 inet dhcp

设置静态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 static

address

netmask

gateway

(2)编辑 /etc/,设置dns

nameserver

nameserver

(3)执行下面两个命令,启用新设置

$sudo ifdown eth0

$sudo ifup eth0