From a61487ea842a83b927c689f3b38fbb3edd289b8a Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Fri, 10 Jan 2014 00:08:53 +0100 Subject: add a bunch of new scripts Signed-off-by: Florian Pritz --- setup-qemu-env | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 setup-qemu-env (limited to 'setup-qemu-env') diff --git a/setup-qemu-env b/setup-qemu-env new file mode 100755 index 0000000..1fe9319 --- /dev/null +++ b/setup-qemu-env @@ -0,0 +1,10 @@ +#!/bin/sh + +#brctl addbr br-qemu +ip link add br-qemu type bridge + +ip addr add 10.0.2.1/24 brd + dev br-qemu +ip link set br-qemu up +iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE + +dnsmasq -i br-qemu --dhcp-leasefile=/tmp/qemu-dhcpd.leases --dhcp-range=10.0.2.2,10.0.2.100,30m #-M "arch/boot/syslinux/gpxelinux.0,,192.168.4.1" -- cgit v1.2.3-24-g4f1b