首页 > 学院 > 开发设计 > 正文

Ubuntu 12.04 IP 配置

2019-11-10 20:24:19
字体:
来源:转载
供稿:网友

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 staticaddress 192.168.80.129netmask 255.255.255.0gateway 192.168.80.2保存退出。注意:只需要设置address(IP地址)、netmask(子网掩码)、gateway(网关)这三项就OK,network和broadcast这两项参数是可以不写的。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表