permissions: 0.983 network: 0.981 user-level: 0.943 device: 0.939 graphic: 0.935 architecture: 0.930 ppc: 0.783 vnc: 0.763 mistranslation: 0.739 VMM: 0.736 performance: 0.726 semantic: 0.694 kernel: 0.660 PID: 0.639 peripherals: 0.576 virtual: 0.545 register: 0.497 debug: 0.478 i386: 0.462 x86: 0.426 boot: 0.401 arm: 0.385 socket: 0.382 TCG: 0.336 KVM: 0.331 risc-v: 0.319 assembly: 0.292 hypervisor: 0.286 files: 0.052 Support vmnet networking without elevated permissions Additional information: Here is a command, that doesn't work when running as normal user: ```bash $ qemu-system-aarch64 \ -device virtio-net-pci,netdev=net0 \ -netdev vmnet-bridged,id=net0,ifname=en0 \ -machine virt ``` It fails with: ``` qemu-system-aarch64: -netdev vmnet-bridged,id=net0,ifname=en0: cannot create vmnet interface: general failure (possibly not enough privileges) ``` When running the same command using elevated permissions (i.e. via `sudo`), it works without any issue.