Skip to content

Instantly share code, notes, and snippets.

@cleverca22
Created May 22, 2016 19:37
Show Gist options
  • Save cleverca22/79395da6a1ee9afee47430dbf1b0a008 to your computer and use it in GitHub Desktop.
Save cleverca22/79395da6a1ee9afee47430dbf1b0a008 to your computer and use it in GitHub Desktop.
virtualisation = {
memorySize = 512;
graphics = false;
qemu.networkingOptions = [ "-net nic,macaddr=52:54:00:12:34:01" "-net vde,sock=/run/vde.ctl" ];
};
virtualisation = {
memorySize = 512;
graphics = false;
qemu.networkingOptions = [ "-net nic,macaddr=52:54:00:12:34:02" "-net vde,sock=/run/vde.ctl" ];
};
virtualisation = {
memorySize = 1024;
qemu.networkingOptions = [
"-net nic,vlan=0,macaddr=52:54:00:12:34:00"
"-net vde,vlan=0,sock=/run/vde.ctl"
];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment