summaryrefslogtreecommitdiff
path: root/tools/run-qemu-image.sh
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2018-06-23 04:37:36 +0200
committerDaniil Baturin <daniil@baturin.org>2018-06-23 04:37:36 +0200
commit9113afff3a538a6e9a7f788189028778aa75fe1f (patch)
tree644be7e1698812eec85adaa6884643f2a775b7e6 /tools/run-qemu-image.sh
parent2268a65ba8edf92400ea185a36e784365de2e853 (diff)
parent85bc557f4c458c08b096abfd5100cc324a2a2ee0 (diff)
downloadvyos-build-9113afff3a538a6e9a7f788189028778aa75fe1f.tar.gz
vyos-build-9113afff3a538a6e9a7f788189028778aa75fe1f.zip
Merge branch 'current'
Diffstat (limited to 'tools/run-qemu-image.sh')
-rwxr-xr-xtools/run-qemu-image.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/run-qemu-image.sh b/tools/run-qemu-image.sh
new file mode 100755
index 00000000..b021ebd6
--- /dev/null
+++ b/tools/run-qemu-image.sh
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+VM_NAME='vyos_qemu'
+VM_IMAGE='./packer_build/qemu/vyos_qemu_image.img'
+MEMORY_SIZE='1024'
+NCPUS=1
+SSH_PORT=2222
+
+qemu-system-x86_64 \
+ -name "${VM_NAME}" \
+ -m ${MEMORY_SIZE} \
+ -net nic,vlan=0,model=virtio \
+ -net user,vlan=0,hostfwd=tcp::"${SSH_PORT}"-:22,hostname="${VM_NAME}" \
+ -drive if=virtio,file=${VM_IMAGE} \
+ -machine accel=kvm \
+ -cpu host -smp ${NCPUS}