====== Build a Bridge with Voyage ====== I used voyage-0.2pre1 on a WRAP 2C. The bridged devices are a Prism wireless mini-PCI card and the WRAP's built in ethernet port. Edit the /etc/network/interfaces Mine looks like this: auto br0 iface br0 inet static address 192.168.254.253 netmask 255.255.255.0 network 192.168.254.0 broadcast 192.168.1.255 gateway 192.168.254.1 bridge_ports eth0 wlan0 pre-up iwconfig wlan0 essid testing mode master The first 5 lines set up the bridged IP infomation. The next line configures the bridge itself. The only line that you will really need to change is the line that starts with "pre-up iwconfig...". This configures the the wireless card to be an access point and sets the ssid to "testing". The final lines that start with post-down enable the bridge to be shutdown nicely. Once you get everything configured to your liking, restart your network and test connectivity.