nokheat Posted August 24, 2008 Report Share Posted August 24, 2008 I have followed the instructions to build a temp bridge and virtual interface for the virtual machine. the network didnt work then. what have i probably missed out? any ideas? here is teh script i used to get the network script: #!/bin/bash #buld a tap adapter tunctl -t tap1 -u <username> #set a bridge and named br0 brctl addbr br0 #make eth0 promisc ifconfig eth0 0.0.0.0 promisc #connect the real interface to bridge brctl addif br0 eth0 #give br0 the existing ip ifconfig br0 192.168.1.60 # connect the virtual interface to bridge brctl addif br0 tap1 # activate tap1 ifconfig tap1 up # set permission chmod 0666 /dev/net/tun Link to comment Share on other sites More sharing options...
scarecrow Posted August 24, 2008 Report Share Posted August 24, 2008 (edited) You have to do all the above as root, and reboot (as your ethernet connection will stop working after "ifconfig eth0 0.0.0.0 promisc"). Also, ifconfig br0 192.168.1.60 Doers this mean that you are using static addresses at your router? Edited August 24, 2008 by scarecrow Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now