On arch Linux, I would like to mainly have eth0 (connected to bridged router) share the connection recieved from wlan0, Ive read tutorials but I'm not command sabby as other users are and don't completely understand. I would appreciate some help! Ty!
feedback
|
|
UPDATE It is not possible to bridge between wireless (client a.k.a. station mode) and wired intefaces According to this thread: http://kerneltrap.org/mailarchive/linux-ath5k-devel/2010/3/21/6871733 Setup NATOne should set up NAT instead:
Assigning an IPThen you have to assign IP addresses to yourself:
Install dhcp daemonInstall a dhcp server and add the following text to its config file (in /etc/dhcpd.conf or something similar)
Start dhcpdThen start it /etc/init.d/dhcpd start And that's it! Only read below if you are interested in the non-working bridging setup
First you create a bridge interface I choose an arbitrary name mybridge then add intefaces to it. You should request a new ip address (This is needed only if you want to get a valid IP for the bridging device itself):
| |||||||||||||||
feedback
|