一、NAT网络配置
设置子网IP、子网掩码
网关IP:子网IP前三位+2
DHCP设置
二、网卡配置
vi /etc/sysconfig/network-scripts/ifcfg-ens33
TYPE=Ethernet
PROXY_METHOD=none
BROWSER_ONLY=no
BOOTPROTO=none
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
NAME=ens33
DEVICE=ens33
ONBOOT=yes
IPADDR=192.168.10.13
NETMASK=255.255.255.0
GATEWAY=192.168.10.2
DNS1=192.168.10.2
注意:DNS地址和网关地址要和上面设置的网关地址一致。onboot为yes、BOOTPROTO=none
ifdown ifcfg-ens33
ifup ifcfg-ens33
三、服务器基础配置
yum install unzip vim tree wget -y
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
systemctl disable firewalld
systemctl stop firewalld
sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
setenforce 0
四、操作系统快速导入
链接:https://pan.baidu.com/s/16d2WL3v8SiMamyYKLBptRw
提取码:jgv4
虚拟机-->文件-->打开
原文地址:https://www.cnblogs.com/reaperhero/p/10258413.html
时间: 2024-11-06 15:01:40