首先设置虚拟网络编辑器,设置网段,注意不要和本地网段冲突。
############ OpenEuler 提供两种 网络管理方式
1、传统的 network 启动脚本 (没有安装的)
2、NetworkManager 网络管家 (默认启用了)
## 两种方式不要同时使用,相互冲突
用 network 服务 ,停止 NetworkManager服务,反之亦然
### 第一种,想使用传统的 network 服务
1、配置好仓库后,需要安装 network 服务 ,
yum install network-scripts
2、关闭 并禁用 NetworkManager 服务
[root@localhost ~]# systemctl stop NetworkManager
[root@localhost ~]# systemctl disable NetworkManager
3、配置好 网卡配置文件 (静态配置)
[root@localhost network-scripts]# vim /etc/sysconfig/network-scripts/ifcfg-ens33
TYPE=Ethernet
BOOTPROTO=static
NAME=ens33
DEVICE=ens33
ONBOOT=yes
IPADDR=192.168.10.131
NETMASK=255.255.255.0
GATEWAY=192.168.10.2
4、 启动network服务,并允许它开机自动
[root@localhost ~]# systemctl start network
[root@localhost ~]# systemctl enable network
5、临时修改IP,或者指派IP的方法,重启后丢失
ifconfig ens33 192.168.10.131 netmask 255.255.255.0 gateway 192.168.10.2