一.网络的初始化
  1.ip地址的修改(临时生效)
  使用ifconfig命令
  ifconfig 网卡名 ip地址 子网掩码
  [root@localhost /]# ifconfig eno16777736 192.168.100.112/24
  1.ip地址的修改(生效)
  修改/etc/sysconfig/network-scripts 目录下的网卡文件
[root@localhost /]# vi /etc/sysconfig/network-scripts/ifcfg-eno16777736
TYPE=Ethernet
BOOTPROTO=static
DEFROUTE=yes
PEERDNS=yes
PEERROUTES=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=yes
IPV6_AUTOCONF=yes
IPV6_DEFROUTE=yes
IPV6_PEERDNS=yes
IPV6_PEERROUTES=yes
IPV6_FAILURE_FATAL=no
NAME=eno16777736
UUID=e8781eab-2865-49a2-9558-46489fda2ab8
DEVICE=eno16777736
ONBOOT=yes
IPADDR=192.168.100.112
NETWORK=255.255.255.0
GATEWAY=192.168.100.1
DNS1=114.114.114.114
  二.主机名的修改
  1.临时生效
  [root@localhost /]# hostname jw153
  2.生效
  修改配置文件 /etc/hostname
  [root@localhost /]# vi /etc/hostname
  修改后保存退出
  三.关闭firewalld和selinux
  1.临时关闭
  1.firewalld
  [root@localhost /]# systemctl stop firewalld.service  #立即生效但是开机时仍会启动
  2.selinux
  [root@localhost /]# setenforce 0 #设置SELinux 成为permissive模式 (会接收数据,但是会记录下来)
  2.关闭
  1.firewalld
  [root@localhost /]# systemctl disable firewalld.service  #开机时不会再自动启动,但是当前的状态仍然开启
  2.selinux
  修改/etc/selinux/config 文件
  将SELINUX=enforcing改为SELINUX=disabled