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

来源:百度文库 编辑:神马文学网 时间:2024/06/05 08:38:13
Ubuntu的网络参数保存在文件 /etc/network/interfaces中,默认设置使用dhcp,内容如下:# The primary network interfaceauto eth0iface eth0 inet dhcp设置静态ip的方法如下:(1)编辑 /etc/network/interfaces1.1)将dhcp 一行屏蔽# The primary network interfaceauto eth0#iface eth0 inet dhcp1.2)添加和静态ip有关的参数# The primary network interfaceiface eth0 inet staticaddress 192.168.0.10netmask 255.255.255.0gateway 192.168.0.1(2)编辑 /etc/resolv.conf,设置dnsnameserver 202.96.134.133nameserver 202.106.0.20(3)执行下面两个命令,启用新设置$sudo ifdown eth0$sudo ifup eth0