[TOC]
配置网卡信息
在
RHEL5
、RHEL6
中网卡配置文件的前缀为eth
,第一块网卡为eth0,第二块网卡为eth1,以此类推
而在RHEL7
中,网卡配置文件的前缀以ifcfg
开始,加上网卡名称
共同组成网卡配置文件名字,例如ifcfg-centos01
第一步:切换到网卡配置文件所在目录
切换到/etc/sysconfig/network-scripts
目录中(存放着网卡的配置文件)
第二步:编辑网卡文件 ifcfg-网卡名称
可以使用
ifconfig
命令确认网卡默认名称
可以将下面的配置参数写入到网卡文件中并保存退出
- 设备类型:
TYPE
=Ethernet - 地址分配模式:
BOOTPROTO
:static - 网卡名称:
NAME
=centos01 - 是否启动:
ONBOOT
=yes - IP地址:
IPADDR
=192.168.96.125 - 子网掩码:
NETMASK
=255.255.255.0 - 网关地址:
GATEWAY
=192.168.96.1 - DNS地址:
DNS1
=192.168.0.40
第三步:重启网络服务并测试网络是否联通
在编辑网卡配置文件后,执行重启网卡设备的命令systemctl restart nwtwork
(在正常情况下不会有提示信息),然后通过ping
命令测试网络联通。
[root@centos7-01 network-scripts]# systemctl restart network
[root@centos7-01 network-scripts]# ping 192.168.96.125
PING 192.168.96.125 (192.168.96.125) 56(84) bytes of data.
64 bytes from 192.168.96.125: icmp_seq=1 ttl=64 time=0.047 ms
64 bytes from 192.168.96.125: icmp_seq=2 ttl=64 time=0.053 ms
64 bytes from 192.168.96.125: icmp_seq=3 ttl=64 time=0.051 ms
64 bytes from 192.168.96.125: icmp_seq=4 ttl=64 time=0.043 ms
64 bytes from 192.168.96.125: icmp_seq=5 ttl=64 time=0.043 ms
^C
--- 192.168.96.125 ping statistics ---
5 packets transmitted, 5 received, 0% packet loss, time 3999ms
rtt min/avg/max/mdev = 0.043/0.047/0.053/0.007 ms
网友评论