centos 7虚拟机怎么配置网卡eno 16

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos 7虚拟机怎么配置网卡eno 16相关的知识,希望对你有一定的参考价值。

能够正确的配置网卡IP地址是保证两台服务器互相通信的前提,而Linux系统中的一切都是文件,配置网络的工作其实就是在编辑网卡配置文件.
在红帽RHEL6系统中网卡配置文件的前缀为"eth",第1块即为"eth0",第2块即为"eth1"并依此类推,但在红帽RHEL7系统中的网卡配置文件前缀则以"ifcfg-eno"开始的。
第1步:首先要切换到"/etc/sysconfig/network-scripts"目录中(该目录存放着网卡的配置文件)。
第2步:使用vim编辑器修改网卡文件"ifcfg-eno16777736",逐项写入配置参数并保存退出,因每台电脑的硬件及架构情况都是不一样的,网卡默认名称请通过ifconfig命令自行确认。
设备类型:TYPE=Ethernet
地址分配模式:BOOTPROTO=static
网卡名称:NAME=eno16777736
是否启动:ONBOOT=yes
IP地址:IPADDR=192.168.10.10
子网掩码:NETMASK=255.255.255.0
网关地址:GATEWAY=192.168.10.1
DNS地址:DNS1=192.168.10.1
第3步:重启网卡设备并测试网络是否联通。
进入到网卡配置文件所在的目录,然后编辑网卡配置文件填入下面的信息:
[root@redhat ~]# cd /etc/sysconfig/network-scripts/
[root@redhat network-scripts]# vim ifcfg-eno16777736
TYPE=Ethernet
BOOTPROTO=static
NAME=eno16777736
ONBOOT=yes
IPADDR=192.168.10.10
NETMASK=255.255.255.0
GATEWAY=192.168.10.1
DNS1=192.168.10.1

执行重启网卡设备的命令,正常情况不会有提示信息,然后通过ping命令测试网络能否联通。
[root@linuxprobe network-scripts]# systemctl restart network
[root@linuxprobe network-scripts]# ping 192.168.10.10
PING 192.168.10.10 (192.168.10.10) 56(84) bytes of data.
64 bytes from 192.168.10.10: icmp_seq=1 ttl=64 time=0.081 ms
64 bytes from 192.168.10.10: icmp_seq=2 ttl=64 time=0.083 ms
64 bytes from 192.168.10.10: icmp_seq=3 ttl=64 time=0.059 ms
64 bytes from 192.168.10.10: icmp_seq=4 ttl=64 time=0.097 ms
^C
--- 192.168.10.10 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 2999ms
rtt min/avg/max/mdev/www/linuxprobe/com = 0.059/0.080/0.097/0.013 msVIM编辑器在Linux中是最常用的一条命令,所以一定要熟练运用。
参考技术A 一般虚拟机都是自动配置的啊

CentOS 7 vs CentOS 6的不同

(1)桌面系统

  [CentOS6] GNOME 2.x

  [CentOS7] GNOME 3.x(GNOME Shell)

 

(2)文件系统

  [CentOS6] ext4

  [CentOS7] xfs

 

(3)内核版本

  [CentOS6] 2.6.x-x

  [CentOS7] 3.10.x-x

 

(4)启动加载器

  [CentOS6] GRUB Legacy (+efibootmgr)

  [CentOS7] GRUB2

 

(5)防火墙

  [CentOS6] iptables

  [CentOS7] firewalld

 

(6)默认数据库

  [CentOS6] MySQL

  [CentOS7] MariaDB

 

(7)文件结构

  [CentOS6] /bin, /sbin, /lib, and /lib64在/下

  [CentOS7] /bin, /sbin, /lib, and /lib64移到/usr下

 

(8)主机名

  [CentOS6] /etc/sysconfig/network

  [CentOS7] /etc/hostname

       $ hostnamectl set-hostname  OraRacNode1 

 

(9)时间同步

  [CentOS6]

  $ ntp

  $ ntpq -p

 

  [CentOS7]

  $ chrony

  $ chronyc sources

 

(10)修改时间

  [CentOS6]

  $ vim /etc/sysconfig/clock

     ZONE="Asia/Tokyo"

     UTC=fales

  $ sudo ln -s /usr/share/zoneinfo/Asia/Tokyo /etc/localtime

 

  [CentOS7]

  $ timedatectl set-timezone Asia/Tokyo

  $ timedatectl status

 

(11)修改地区

  [CentOS6]

  $ vim /etc/sysconfig/i18n

     LANG="ja_JP.utf8"

  $ /etc/sysconfig/i18n

  $ locale

 

  [CentOS7]

  $ localectl set-locale LANG=ja_JP.utf8

  $ localectl status

 

(12)服务相关

  1)启动停止

  [CentOS6]

  $ service service_name start

  $ service service_name stop

  $ service sshd restart/status/reload

 

  [CentOS7]

  $ systemctl start service_name

  $ systemctl stop service_name

  $ systemctl restart/status/reload sshd

 

 

  2)自启动

  [CentOS6]

  $ chkconfig service_name on/off

 

  [CentOS7]

  $ systemctl enable service_name

  $ systemctl disable service_name

             

              例如:

                     启动一个服务:systemctl start postfix.service

                     关闭一个服务:systemctl stop postfix.service

                     重启一个服务:systemctl restart postfix.service

                     显示一个服务的状态:systemctl status postfix.service

                     在开机时启用一个服务:systemctl enable postfix.service

                     在开机时禁用一个服务:systemctl disable postfix.service

                     查看服务是否开机启动:systemctl is-enabled postfix.service;echo $?

                     查看已启动的服务列表:systemctl list-unit-files|grep enabled

 

  说明:启用服务就是在当前“runlevel”的配置文件目录/etc/systemd/system/multi-user.target.wants/里,建立/usr/lib/systemd/system里面对应服务配置文件的软链接;禁用服务就是删除此软链接。

 

  (1)systemd使用比sysvinit的运行级更为自由的target替代。

    第3运行级用multi-user.target替代。第5运行级用graphical.target替代。runlevel3.target和runlevel5.target分别是指向 multi-user.target和graphical.target的符号链接。
  可以使用下面的命令切换到“运行级别3 ”:
    systemctl isolate multi-user.target或systemctl isolate runlevel3.target
  可以使用下面的命令切换到“运行级别5 ”:
    systemctl isolate graphical.target或systemctl isolate runlevel5.target

  (2)如何改变默认运行级别?
    systemd使用链接来指向默认的运行级别。在创建新的链接前,可以通过下面命令删除存在的链接: rm /etc/systemd/system/default.target
  默认启动运行级别3 :
    ln -sf /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
  默认启动运行级别5 :
    ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target
    systemd不使用/etc/inittab文件。

  (3)如何查看当前运行级别?
    旧的runlevel命令在systemd下仍然可以使用。可以继续使用它,尽管systemd使用 ‘target’ 概念(多个的 ‘target’ 可以同时激活)替换了之前系统的runlevel。
  等价的systemd命令是systemctl list-units –type=target

 

  3)服务一览

  [CentOS6]

  $ chkconfig --list

 

  [CentOS7]

  $ systemctl list-unit-files

  $ systemctl --type service

 

  4)强制停止

  [CentOS6]

  $ kill -9 <PID>

 

  [CentOS7]

  $ systemctl kill --signal=9 sshd

 

(13)网络

       1)网络信息

  [CentOS6]

  $ netstat

  $ netstat -I

  $ netstat -n

 

              [CentOS7]

  $ ip n

  $ ip -s l

  $ ss

 

       2)IP地址MAC地址

  [CentOS6]

  $ ifconfig -a

 

  [CentOS7]

  $ ip address show

  $ nmcli connection show

 

       3)路由

  [CentOS6]

  $ route -n

  $ route -A inet6 -n

 

  [CentOS7]

  $ ip route show

  $ ip -6 route show

 

(14)重启关闭

 

       1)关闭

  [CentOS6]

  $ shutdown -h now

 

  [CentOS7]

  $ poweroff

  $ systemctl poweroff

 

       2)重启

  [CentOS6]

  $ reboot

  $ shutdown -r now

 

  [CentOS7]

  $ reboot

  $ systemctl reboot

 

       3)单用户模式

  [CentOS6]

  $ init S

 

  [CentOS7]

  $ systemctl rescue

 

       4)启动模式

  [CentOS6]

  [GUICUI]

  $ vim /etc/inittab

    id:3:initdefault:

  [CUIGUI]

  $ startx

 

  [CentOS7]

  [GUICUI]

  $ systemctl isolate multi-user.target

  [CUIGUI]

  $systemctl isolate graphical.target

  默认

  $ systemctl set-default graphical.target

  $ systemctl set-default multi-user.target

  当前

  $ systemctl get-default

 

    

   systemd-cgls以树形列出正在运行的进程,它可以递归显示控制组内容

 

参考:

       http://urashita.com/archives/1538

       http://qiita.com/sion_cojp/items/115e1671fcbc8f214aee

       https://www.upken.jp/kb/cent6-cent7.html

       http://inaba-serverdesign.jp/blog/20141110/centos7.html

 

以上是关于centos 7虚拟机怎么配置网卡eno 16的主要内容,如果未能解决你的问题,请参考以下文章

centos 7如何联网

虚拟机装的linux centos7怎么设置网络

配置虚拟机修改网卡名称eno16777736为eth0

centos7 虚拟机没有ip地址怎么办

Centos7之配置固定IP地址

VMware:虚拟机里Linux系统Redhat7更改网卡名