CentOS 7 基于模版初始化 #
一、设置 hostname #
hostnamectl set-hostname xxx
二、设置静态IP(如果走DHCP的话,这项可以不设置) #
修改文件 /etc/sysconfig/network-scripts/ifcfg-ens192
,做出如下修改
BOOTPROTO="static"
...
ONBOOT="yes"
IPADDR="172.16.90.12"
PREFIX="24"
GATEWAY="172.16.90.1"
DNS1="223.5.5.5"
DNS2="114.114.114.114"
修改文件 /etc/resolv.conf
,做出如下修改
nameserver 223.5.5.5
nameserver 114.114.114.114
重启网络
systemctl restart network