I'm using kvm and qemu to run a windows virtual machine, but I'm trying to get internet on that machine. I've been reading about all this bridging and stuff that is done to do that, but I was wondering if there was a simpler way, to just forward my internet connection (since I'm connected on the host machine) through qemu to the guest operating system. Is this possible? Thanks
Asked
Active
Viewed 6,676 times
2 Answers
2
You can use the user network emulation, which is slow, but is simple and should be activated by default indeed.
qemu -net nic -net user ...
This is how it's done.
This solution have some drawbacks:
- Some protocole (ICMP) can't reach the internet, but tcp and udp can.
- From the host you can't reach the guest afaik
- Networking in the is slow compared to bridging

slubman
- 2,277
- 16
- 12
-
Thanks for ICMP, because I've started to panic already why there's no ping and all config is fine – holms Aug 23 '13 at 22:27
0
No you have to bridge the connection. Instructions for Linux. Instructions for FreeBSD.
If you're going to be running this all the time, you might want to just write a quick script to do the steps automatically.

Chris S
- 77,945
- 11
- 124
- 216