Centos7网卡配置
Linux有两种网络服务的管理组件:network / Network Manager
方法一:network
1.查看网卡信息
[root@localhost ~]# ip a
这里查看到网卡 ens33
2.修改网卡配置文件
[root@localhost ~]# cd /etc/sysconfig/network-scripts/
[root@localhost network-scripts]# ls
可以查看到网卡配置文件ifcfg-ens33
[root@localhost network-scripts]# vim ifcfg-ens33
原配置文件
修改后的配置文件(主要修改红标注)
保存配置文件退出
[root@localhost]# mount -a   (检查配置文件是否编辑有误)
3.重启网卡,使配置生效
[root@localhost ~]# systemctl restart network
再次查看网卡信息
[root@localhost ~]# ip a
4.Ping命令测试同网段IP是否连通
[root@localhost ~]# ping 192.168.137.1

方法二:Network Manager
centos vim命令给虚拟机重新添加一块网卡,网络适配器2
1.查看网卡信息
[root@localhost ~]# ip a
这里查看到网卡 ens33是已经配置过的,有IP地址,网卡ens37是刚刚新添加的网卡,还没有配置IP
[root@localhost ~]# cd /etc/sysconfig/network-scripts/
[root@localhost network-scripts]# ls
这里可以看到只有ens33网卡的配置文件,没有ens37的配置文件,接下来我们就用Network Manager服务的命令来生成配置文件并且配置IP地址
[root@localhost ~]# nmcli connection add con-name ens37 type ethernet ifname hod manual ipv4.addresses 192.168.137.11/24 autoconnect yes

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。