Ubuntu网络配置静态IP与hostname利用号令[Linux安全]
本文“Ubuntu网络配置静态IP与hostname利用号令[Linux安全]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
Ubuntu网络配置的常用系统,于是我学习研究了Ubuntu网络配置,在这里对大家具体介绍下Ubuntu网络配置利用,但愿对大家有效Ubuntu网络配置包含了非常好的翻译和简单利用的架构.为网卡配置DHCP地址:假如你想配置DHCP地址,你需求编辑/etc/network/interfaces,并输入以下几行(假定你的网卡是eth0):sudo vi /etc/network/interfaces
# The primary network interface - use DHCP to find our address
auto eth0
iface eth0 inet dhcp //指定为dhcp
在输入这几行后,你需求通过以下号令重新启动你的网络设备:sudo /etc/init.d/networking restart
为网卡配置静态IP
假如你想配置静态IP地址,你需求编辑/etc/network/interfaces,并输入以下几行(假定你的网卡是eth0):sudo vi /etc/network/interfaces
# The primary network interface
auto eth0
iface eth0 inet static //指定为static
address 192.168.3.90 //IP地址
gateway 192.168.3.1 //网关
netmask 255.255.255.0 //子网掩码
network 192.168.3.0 //这个……网络?
broadcast 192.168.3.255 //广播
在输入这几行后,你需求通过以下号令重新启动你的网络设备:sudo /etc/init.d/networking restart
设置第二个IP地址或虚拟IP假如你是一个服务器管理员大概只是普通用户,有时你需求为系统指派第二个IP,那么你可以这样做,一样编辑/etc/network/interfaces文件(假定你的网卡是eth0):
sudo vi /etc/network/interfaces
auto eth0:1
iface eth0:1 inet static
address 192.168.1.60
netmask 255.255.255.0
network x.x.x.x
broadcast x.x.x.x
gateway x.x.x.x
在输入这几行后,你需求通过以下号令重新启动你的网络设备:sudo /etc/init.d/networking restart
设置Ubuntu网络配置系统的hostname利用以下号令格局来改系统的hostname,大概直接编辑/etc/hostname sudo hostname newname
设置DNS
sudo vi /etc/resolv.conf
enter the following details
search test.com
nameserver 192.168.3.2
以上介绍Ubuntu网络配置.
以上是“Ubuntu网络配置静态IP与hostname利用号令[Linux安全]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |