设置网络ip
我在网上找到的配置网络桥接,大多是在vmware中。所以我就自行整理一下在linux系统中如何设置桥接模式
网桥设定
1.cd /etc/sysconfig/network-scripts
2.ls
3.rm -fr ifcfg-br0 ifcfg-westos
- 大家如果是在真机中做实验的话,可以通过
mv /etc/sysconfig/network-scripts/ifcfg-br0 /mnt
和mv /etc/sysconfig/network-scripts/ifcfg-westos /mnt
将文件移动到/mnt下 - 此处的westos是我的电脑里面的,你们可以看看自己电脑里面的是什么。也可能是ifcfg-eth0或ifcfg-enp1s0之类的
4.vim ifcfg-br0
5.vim ifcfg-westos
6.重启网络
- rhel7:
systemctl restart network
- rhel8:
systemctl restart NetworkManager
来源:CSDN
作者:ly_qiu
链接:https://blog.csdn.net/ly_qiu/article/details/104755515