When I type ifconfig,

I see wlan0 and eth0. I want to somehow bind these two together into one device.

How would I go about doing this?

link|improve this question
Sounds like superuser.com/q/262329 – pydave Mar 20 at 15:38
feedback

migrated from stackoverflow.com Jul 9 '10 at 2:20

This question came from our site for professional and enthusiast programmers.

3 Answers

It sounds like you're after a bridge. It might not work with your wireless card (it depends on the model).

link|improve this answer
feedback

I forget the exact question, but I've seen this before on one of the *stacks, and the answer was that it is not possible to do this in any useful way

link|improve this answer
feedback

You can actually do it, e.g. as root:

modprobe bonding
ifconfig bond0 up
ifenslave bond0 wlan0 eth0

then use your preferred method of getting an ip address and a default route for bond0

You can also include it in /etc/network/interfaces with proper config for bond0 and an if-post-up line for ifenslave

link|improve this answer
feedback

Your Answer

 
or
required, but never shown