Tuesday, April 24, 2012

Wireless Bridging For KVM

This tutorial aims to establish a wireless bridge between the host wireless interface and the guest Ethernet interface. The guest will behave as standalone machine with dedicated IP address and has full connectivity to the outside world. Even SSH between the host and the guest is available.


Keep in mind that this procedure works only with assigning the guest a static IP address not DHCP but the host can get its IP with static or DHCP.


1. First install parprouted pakcage :
In CentOS :


yum install parprouted


2. Enable IP forwarding in your host:


echo 1 > /proc/sys/net/ipv4/ip_forward


3. Configure the tap interface :


tunctl -t tap0
ip link set tap0 up
ip addr add 10.10.10.10/32 dev tap0


Important : the ip address of tap interface does not have to be in the same  subnet of your wireless and guest IP addresses. For my case the wireless addresses in the subnet 192.168.0.0 network and tap0 is in 10.0.0.0 network, but the guest IP address MUST be on the same network of the wireless interface.


4. Bridge your wireless LAN interface with the tap interface :


parprouted ra0 tap0


My wireless interface is ra0 so replace with your interface (maybe wlan0)


5. If iptables firewall is active , we MUST add rules for allowing connections through tap0 :


vi /etc/sysconfig/iptables


and add the following :



-A INPUT -i tap0 -j ACCEPT 
-A FORWARD -i tap0 -j ACCEPT 
-A FORWARD -o tap0 -j ACCEPT 


6. Now the bridge is ready. Start your VM :


qemu-kvm -hda test.img -m 512 -net nic -net tap,ifname=tap0,script=no


I faced a little problem with the vnc connection : there was two mouse cursors and that was annoying and the solution is simple; add the option
 -usb -usbdevice tablet to the last qemu-kvm command.


7. Inside the guest VM configure its interface with static IP address and this step depends on the type of your guest operating system. Remember : the same subnet of your wireless inerface. 


Example : wlan0 address : 192.168.0.2 
                Guest IP address : 192.168.0.3


Also configure your guest DNS and Default gateway as that of your host.




1 comment:

  1. This is often very useful for an entry. I just marked this post for future reference. Keep sharing that kind of beautiful message. Thank you for sharing. This is a terribly delicate subject.

    DedicatedHosting4u.com

    ReplyDelete