虽然不是每一家用户都会使用linux操作系统,但是要学好计算机技术,每一个学生都必须要学会它!因为它很重要,那么今天秋天网 Qiutian.ZqNF.Com小编就给大家说说linux操作系统的基本知识-ip地址如何配置吧!下面就跟着秋天网 Qiutian.ZqNF.Com小编一起来看看配置方法吧!
linux操作系统的ip地址如何配置的方法
打开一个terminal,切换到root用户
用root用户编辑网卡
命令如下:
vi /etc/sysconfig/network-s/ifcfg-eth0
网卡文件内容如下:这里使用的是red hat linux,使用dhcp自动指派的ip的配置文件
##################################
device="eth0"
nm_controlled="yes"
onboot="yes"
type="ethernet"
uuid="1d8c609f-0f92-4699-bcf4-ec1b6d948a25"
netmask=255.255.255.0
bootproto=static
defroute=yes
ipv4_failure_fatal=yes
ipv6init=no
name="system eth0"
hwaddr=00:0c:29:a8:11:19
peerdns=yes
peerroutes=yes
last_connect=1450361885
##################################
按两下esc键,输入冒号wq,然后按下enter键,保存,退出
使用命令service network start重启网卡设备
使用ifconfig命令查看ip配置信息
ps:
满足以下条件才能保证能正常启动网卡设备:
有ifcfg-eth*文件
eth*的设备名称与ifconfig -a中看到的eth*里面的*内容要一致
ifcfg-eth*文件中的mac地址要与if-config -a中的mac地址一致
这段是ifcfg-eth文件的核心内容:
以下是一个linux配置文件的样例:
##################################
device=eth0
onboot=yes
type=ethernet
bootproto=static
dns=192.168.1.1
ipaddr=192.168.1.108
netmask=255.255.255.0
gateway=192.168.1.1
hwaddr=00:0c:29:a8:11:19
##################################
样例2,这是官方样例:
##################################
device=lo
ipaddr=127.0.0.1
netmask=255.0.0.0
network=127.0.0.0
# if you're having problems with gated making 127.0.0.0/8 a martian,
# you can change this to something else (255.255.255.255, for example)
broadcast=127.255.255.255
onboot=yes
name=loopback
##################################