have different dists
[camarabuntu.git] / docs / network-qemu-instances-together
blob2bfeea6516908f2b62e64f5123247e0d991f3a6e
1 How to network 2 or more qemu instances together
3 start one instance:
5 qemu -hda hda1.img -net nic -net socket,listen=:8080
7 Start another like this:
9 qemu -hda hda2.img -net nic -net socket,connect=:8080
11 now eth0 on the first qemu will be connected to eth0 on the second.