一、实现qemu虚机&宿主机网络互通

qemu虚机的网络介绍及原理可参考前人文章:Linux 内核调试 七:qemu网络配置_lqonlylove的博客-CSDN博客

这里只简单梳理下操作流程,以便快速实现网络互通。

1.宿主机创建 tap0

[root@localhost ~]# ifconfig[root@localhost ~]# ip tuntap add dev tap0 mode tap[root@localhost ~]# ip link set dev tap0 up[root@localhost ~]# ip address add dev tap0 192.168.2.128/24[root@localhost ~]# ifconfig

两次ifconfig区别可看出宿主机上新添加的tap0设备,其中tap0的ip已被我们设置。

2.在另一窗口启动qemu虚机,注意带上-net命令

qemu-system-ppc64 -m 8G -smp 4 -name pseries --enable-kvm -boot cd -hda linux.img -serial tcp::4444,server=on,wait=off\-net nic -net tap,ifname=tap0,script=no,downscript=no

此次我们是手动在宿主机上创建了tap0设备并绑定固定ip,所以qemu启动时网卡的启动脚本和关闭脚本都不用了。

3.虚拟机中配置网络

 # ip addr # ip addr add 192.168.2.129/24 dev exxx # ip addr # ip link set env2 up # ping 192.168.2.128 -c 4

其中的dev设备要换成你自己虚机的设备,我这里是env2。此时可以看到,我们用env2的网卡ping宿主机的tap0,已经可以ping通。

4.将宿主机文件拷贝至qemu虚机

此时,可以 scp root@192.168.2.128:/……按照个人需求进行文件拷贝了。

5.宿主机 ping 虚拟机

上述方法实现qemu虚机&宿主机网络互通后,每次guest重启均会丢失相应的env2的配置信息,所以重启后必须重配,嫌麻烦的话可以直接写死到rc.local中,当然也可以通过net的启动脚本script来指定。

二、实现qemu虚拟机访问外网

接上上述步骤,要想让虚拟机继续访问外网则需进一步配置下route以及iptables。

此处参考了Qemu连接外网的配置方法_qemu 使用user联网_Mculover666的博客-CSDN博客

1.宿主机需要开启 IP 转发

echo 1 > /proc/sys/net/ipv4/ip_forward

这个选项一般都是默认开的。

2.宿主机添加静态路由

这个路由一般都是有的,没有则需要手动添加:

route add -net 192.168.2.0 netmask 255.255.255.0 dev tap0

3. 宿主机设置 iptables 规则

打开 iptables 的 NAT 功能:

iptables -t nat -A POSTROUTING -s 192.168.2.0/24 -o enP1p22s0 -j MASQUERADE

这条规则的意思是,来自 192.168.2.0/24,且从 enP1p22s0 出去的包,要进行 NAT,同时会对返回的包进行 NAT。如果只有一个子网, -s 192.168.2.0/24 可以省略。

4.qemu添加默认网关

虚机中添加default gw,即将虚机的网络数据包都交由物理机tap0处理。

route add default gw  dev exxxroute add default gw 192.168.2.128 dev env2

此刻,ping外网如centos已经成功!可以自由自在的yum install了。^_^

# CentOS-Base.repo## The mirror system uses the connecting IP address of the client and the# update status of each mirror to pick mirrors that are updated to and# geographically close to the client.You should use this for CentOS updates# unless you are manually picking other mirrors.## If the mirrorlist= does not work for you, as a fall back you can try the # remarked out baseurl= line instead.## [base]name=CentOS-8.5.2111 - Base - mirrors.aliyun.combaseurl=http://mirrors.aliyun.com/centos-vault/8.5.2111/BaseOS/$basearch/os/http://mirrors.aliyuncs.com/centos-vault/8.5.2111/BaseOS/$basearch/os/http://mirrors.cloud.aliyuncs.com/centos-vault/8.5.2111/BaseOS/$basearch/os/gpgcheck=0enabled=1gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-Official #additional packages that may be useful[extras]name=CentOS-8.5.2111 - Extras - mirrors.aliyun.combaseurl=http://mirrors.aliyun.com/centos-vault/8.5.2111/extras/$basearch/os/http://mirrors.aliyuncs.com/centos-vault/8.5.2111/extras/$basearch/os/http://mirrors.cloud.aliyuncs.com/centos-vault/8.5.2111/extras/$basearch/os/gpgcheck=0enabled=1gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-Official #additional packages that extend functionality of existing packages[centosplus]name=CentOS-8.5.2111 - Plus - mirrors.aliyun.combaseurl=http://mirrors.aliyun.com/centos-vault/8.5.2111/centosplus/$basearch/os/http://mirrors.aliyuncs.com/centos-vault/8.5.2111/centosplus/$basearch/os/http://mirrors.cloud.aliyuncs.com/centos-vault/8.5.2111/centosplus/$basearch/os/gpgcheck=0enabled=1gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-Official [PowerTools]name=CentOS-8.5.2111 - PowerTools - mirrors.aliyun.combaseurl=http://mirrors.aliyun.com/centos-vault/8.5.2111/PowerTools/$basearch/os/http://mirrors.aliyuncs.com/centos-vault/8.5.2111/PowerTools/$basearch/os/http://mirrors.cloud.aliyuncs.com/centos-vault/8.5.2111/PowerTools/$basearch/os/gpgcheck=0enabled=1gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-Official[AppStream]name=CentOS-8.5.2111 - AppStream - mirrors.aliyun.combaseurl=http://mirrors.aliyun.com/centos-vault/8.5.2111/AppStream/$basearch/os/http://mirrors.aliyuncs.com/centos-vault/8.5.2111/AppStream/$basearch/os/http://mirrors.cloud.aliyuncs.com/centos-vault/8.5.2111/AppStream/$basearch/os/gpgcheck=0enabled=1gpgkey=http://mirrors.aliyun.com/centos/RPM-GPG-KEY-CentOS-Official