Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Intel Wireless Link 5100 and bonding
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware
View previous topic :: View next topic  
Author Message
VinzC
Watchman
Watchman


Joined: 17 Apr 2004
Posts: 5098
Location: Dark side of the mood

PostPosted: Thu May 28, 2009 8:18 am    Post subject: Intel Wireless Link 5100 and bonding Reply with quote

Hi.

After I've switched to a new laptop, a Dell XPS Studio 1640, I seem to no longer be able to configure bonding between both Ethernet and Wireless cards. I had a Dell Inspiron 9400 (with an IPW3945) before and though I couldn't do that either in the first place, I've been able to successfully bond wlan0 and eth0 recently.

Is it a matter of firmware? driver? kernel? Is it likely to happen like with IPW3945 (i.e. being able to bond later on)? Did anyone succeed in bonding an Ethernet device and an Intel Wifi 5100? (I.e. have I missed something?)

Thanks in advance.
_________________
Gentoo addict: tomorrow I quit, I promise!... Just one more emerge...
1739!
Back to top
View user's profile Send private message
richard.scott
Veteran
Veteran


Joined: 19 May 2003
Posts: 1497
Location: Oxfordshire, UK

PostPosted: Mon Jun 08, 2009 10:29 pm    Post subject: Reply with quote

Hi,

What's your net config like?

I have something like this (but its for wired lan not wireless and lan):

Code:
config_eth0=("null")
config_eth1=("null")
slaves_bond0=("eth0 eth1")
depend_bond0() {
  need net.eth0 net.eth1
}


Does bonding work with just one interface configured?

Rich
Back to top
View user's profile Send private message
VinzC
Watchman
Watchman


Joined: 17 Apr 2004
Posts: 5098
Location: Dark side of the mood

PostPosted: Tue Jun 09, 2009 5:07 am    Post subject: Reply with quote

richard.scott wrote:
Does bonding work with just one interface configured?

Rich


With eth0, yes. With wlan0, no. Do you have an Intel 5100 Wireless card?

EDIT: Ah?! Spoke too quickly.... :oops: Bonding now works with my script at least...

bin/bonding.sh:
#!/bin/sh
VIF=bond0
WIF=wlan0
EIF=eth0

# Initialize bonding
[ -d /proc/net/bonding ] || modprobe bonding
ip link set $VIF up
ifenslave $VIF $WIF $EIF || exit 1
wpa_supplicant -Dwext -c /etc/wpa_supplicant/wpa_supplicant.conf -W -B -i $WIF -b $VIF -P /var/run/wpa_supplicant-$WIF.pid
wpa_cli -a /etc/wpa_supplicant/wpa_cli.sh -p /var/run/wpa_supplicant -i $WIF -P /var/run/wpa_cli-$WIF.pid -B

dhcpcd -F both -A -L $VIF

Go figure!
_________________
Gentoo addict: tomorrow I quit, I promise!... Just one more emerge...
1739!
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum