Debian上安装KVM及GUI管理工具

安装KVM

sudo apt install qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils

安装Cockpit

sudo apt install cockpit cockpit-machines

登录管理系统

https://ip:9090

默认情况下可能禁用了root用户,在配置文件/etc/cockpit/disallowed-users中解除

磁盘管理
qemu-img info <qcow2文件名>
qemu-img resize <qcow2文件名> <新大小>[……]

继续阅读

Configure iptables to forward subnets data on Linux

  • source: 192.168.1.0/24
  • destination: 172.16.1.0/24
  • policy: SNAT
iptables -A FORWARD -s 192.168.1.0/24 -d 172.16.1.1/24 -j ACCEPT
iptables -A FORWARD -s 172.16.1.0/24 -d 192.168.1.0/24 -m state --state RELATED,ESTABLISHED -j ACCEPT
iptables -t nat -A POSTROUTING -s 192.168.1.0/24 -d 172.16.1.0/24 -[......]

继续阅读