Red Hat Enterprise Linux 7.0


RHEL7里面的网卡命名方式从eth0,1,2的方式变成了enoXXXXX的格式。

  •     en代表的是enthernet (以太网)

  •     o 代表的是onboard (内置)

  •     XXXXX那一串数字是主板的某种索引编号自动生成,以便保证其唯一性。

和原先的命名方式对比,这种新的方式比较长,难以记忆,不过优点在于编号唯一,做系统迁移的时候不容易出错。




1、修改/etc/sysconfig/network-scripts/eno16777736


查看网卡名称(本机是eno16777736)

编辑ifcfg-eno16777736文件

[root@localhost network-scripts]# vim ifcfg-eno16777736

重启网卡,测试网络

[root@localhost network-scripts]# systemctl restart network
Red Hat Enterprise Linux 7.0 的网络配置_第1张图片




2、图形工具nmtui


[root@localhost network-scripts]# nmtui
Red Hat Enterprise Linux 7.0 的网络配置_第2张图片




3、图形工具nm-connection-editor


[root@localhost 桌面]# nm-connection-editor
Red Hat Enterprise Linux 7.0 的网络配置_第3张图片


——---------------------------------------------------------------------------------

问题1在VM上安装Centos7时,装好vmware后还是连不上网

原因:有线网卡没有激活(默认centos和Redhat都是不启用有线网卡,所以要么手动开启,要么直接启用)

解决方案

1、激活网卡。在桌面点击右键找到命令行以超级用户的权限进入(输入 su,回车)输入密码(进入桌面时的密码)。

2、cd /etc/sysconfig/network-scripts/

      ls 查看下ifcfg-eno后面对应的数字是什么

3、以eno32为例vi ifcfg-eno32编辑下ONBOOT="yes"
     开启自动启用网络连接:wq 保存退出

4、service network restart 重启网络应该就可以看到有线网卡了!

问题2Centos7不能上网,提示Job for iptables.service failed because the control process exited with error code.See "systemctl status network.service" and "journalctl -xe" for details.

解决方案

[root@localhost inventory]# systemctl stop NetworkManager
[root@localhost inventory]# systemctl disable NetworkManager

然后:重启网卡:
[root@localhost inventory]# systemctl restart network
[root@localhost inventory]# ifconfig


查看DNS:

[root@localhost inventory]# cat /etc/resolv.conf

查看hosts解析

[root@localhost inventory]# cat /etc/hosts


------------------------------------------------------------------补充说明

装了虚拟机之后,出现的两个网卡vmware1和vmware8是什么呀?

vmnet1(仅主机模式,hostonly),生成vmnet1虚拟网卡,并定义一个ip地址,虚拟机设置为仅主机模式,需要手动设置和vmnet1相同的子网网段,作用相同与vmnet0但由于vmnet1不接入其他网络,所以数据只在虚拟机和物理机间交换。


vmnet8(NAT模式,网络地址转换),生成vmnet8虚拟机网卡,并通过VMware NAT service提供网关和地址转换服务,VMware DHCP service提供虚拟机ip地址自动分配服务,通过vmnet8与虚拟机通讯。


那些虚拟网卡是作为交换机来使用的。

在VMware Workstation中,默认有三个虚拟交换机VMnet0用于桥接,VMnet1用于仅主机网络,VMnet8用于NAT。