Centos-Minimal网络配置

0、虚拟机设置为NAT模式

Centos-Minimal网络配置

 

 

1、修改网卡配置 vi /etc/sysconfig/network-scripts/ifcfg-ens32

BOOTPROTO=dhcp

ONBOOT=yes

2、重启虚拟机

3、ping www.baidu.com    --能通就行

4、修改yum源

yum install -y wget       --安装wget

cd /etc/yum.repos.d    

mv CentOS-Base.repo  CentOS-Base.repo.bak      --备份

wget -O ./CentOS-Base.repo  https://mirrors.aliyun.com/repo/Centos-7.repo  --下载阿里源

yum clean all

yum makecache   --清理缓存

 

5、安装常用软件

yum install net-tools -y         --能使用ifconfig命令

上一篇:配置阿里云yum源


下一篇:asp.net core监控—引入Prometheus(六)