You are not logged in.
My setup is that I have a laptop with both a wifi card and an ethernet card that can connect to the network via wifi. I also have a desktop with no wifi card that I want to use on the network. I have the two connected via an ethernet cable. I want to bridge the wired and wireless connections on my laptop so that my desktop can be on the same network. When I do this, however, problems arise on the wifi. According to iwconfig, it can connect to the network, but when I run dhcpcd on the wireless interface it times out on waiting for carrier. The bridging in WIndows works fine, but I'd rather not reboot just for this task. Does anyone know a solution to this problem? I am running a bcm4312 wifi card if it helps.
Last edited by correnos (2010-03-14 18:43:51)
Offline
does setting static ip address work?
Offline
Describe what you are doing to configure the bridge.
Offline
ifconfig eth0 down
ifconfig eth1 down
brctl addbr br0
brctl addif br0 eth0
brctl addif br0 eth1
ifconfig eth0 up
ifconfig eth1 up
wpa_supplicant -B -Dwext -i eth0 -c /etc/wpa_supplicant.conf
# wait 10 seconds or so
iwconfig eth0 # shows it's connected
dhcpcd eth0 # times outOffline
did You try to setup IP address and default gateway on br0 interface manually?
Offline
No, I haven't. I will try it when I get a chance.
Offline