Beta Testers wanted for Lite Series Upgrade - Click here to register interest


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Using network-manager-gnome to bridge eth0 and wlan0
#11
Say, can anybody explain why Linux Lite's nm-applet allows one to specify a WiFi slave to a bridge given this statement which I have encountered several times:

"Note that a bridge cannot be established over Wi-Fi networks operating in Ad-Hoc or Infrastructure modes. This is due to the IEEE 802.11 standard that specifies the use of 3-address frames in Wi-Fi for the efficient use of airtime. "

(from: https://access.redhat.com/documentation/...dging.html )

Perhaps it means that you cannot have more than one WiFi slave, I can't tell because "bridge cannot be established OVER" is not precise enough terminology in this case. It also begs the question as to why Windows XP can do it. I suppose the statement is correct and that what is being done for both Windows XP and Linux Lite is something slightly different from true bridging or whatnot. Anyway, any clarification as to whether or not it is true for Linux Lite would be helpful.
Reply
#12
(11-05-2015, 11:59 PM)firenice03 link Wrote: Can you when hardwired to router have the pc broadcast an SSID? And pick it up say a phone and access internet? Then maybe its something on the router, like a repeater for the wireless?? Wish my other router was here lol...

Sorry firenice03. I cannot follow you. Let me be clear. I have this working just fine in Windows XP so I don't need to do anything but do the same thing in Linux Lite. If Linux lite can bridge the two network interfaces, yay! If not, then fine. Only I think in that case it would be appropriate to remove the misleading settings and dialog in the applet.
Reply
#13
Sorry, I'm a little under the weather and was on my phone...
I think I get what your attempting.. It dawned on me..
I have this USB WiFi adapter.. http://www.tp-link.com/en/products/detai...N823N.html
Quote:SoftAP Mode – Turn a wired internet connection to a PC or Laptop into a Wi-Fi hotspot
You'll notice that it has a built-in SoftAP app.. It takes a wired connection "bridges" to WiFi.. From here you use router 2 to connect to the SoftAP allowing use of ports...
WinXP does/did this on certain WiFi adapters (I think)...

This may start going out of my Linux expertize...
You may need to see if there is an updated driver or software to set up allow...
LL4.8 UEFI 64 bit ASUS E402W - AMD E2 (Quad) 1.5Ghz  - 4GB - AMD Mullins Radeon R2
LL5.8 UEFI 64 bit Test UEFI Kangaroo (Mobile Desktop) - Atom X5-Z8500 1.44Ghz - 2GB - Intel HD Graphics
LL4.8 64 bit HP 6005- AMD Phenom II X2 - 8GB - AMD/ATI RS880 (HD4200)
LL3.8 32 bit Dell Inspiron Mini - Atom N270 1.6Ghz - 1GB - Intel Mobile 945GSE Express  -- Shelved
BACK LL5.8 64 bit Dell Optiplex 160 (Thin) - Atom 230 1.6Ghz - 4GB-SiS 771/671 PCIE VGA - Print Server
Running Linux Lite since LL2.2
Reply
#14
Hi,
You peaked my interest, givenn LL2.x is based on Ubuntu 14.04 LTS
Lots of stuff on this subject, this was the last I found, a response to another post. You have probably tried this...

Quote:Originally Posted by myth-eeebox-ben  View Post
it seems a simple bridge interface will not work for wlan0 < eth0 because wi-fi packets aren't the same as ethernet packets.


Not true.
A simple bridge interface works fine, and I am using it now. The packets are the same.

* Install bridge-utils to be able to create network bridges:
Code:
sudo apt-get install bridge-utils

* Edit /etc/network/interfaces:
Code:
sudo nano /etc/network/interfaces

The interfaces file should look like this after editing it:

Code:
auto eth0
iface eth0 inet manual
#
auto br0
iface br0 inet dhcp
#
bridge_ports eth0 wlan0
#
# The loopback network interface
auto lo
iface lo inet loopback

* Restart networking with:

Code:
sudo /etc/init.d/networking restart
Upgrades WIP 2.6 to 2.8 - (6 X 2.6 to 2.8 completed on: 20/02/16 All O.K )
Linux Lite 3.0 Humming on a ASRock N3070 Mobo ~ btrfs RAID 10 Install on 4 Disks Smile

Computers Early days:
ZX Spectrum(1982) , HP-150 MS-DOS(1983) , Amstrad CPC464(1984) ,  BBC Micro B+64(1985) , My First PC HP-Vectra(1987)
Reply
#15
(11-06-2015, 12:27 AM)Wirezfree link Wrote: Hi,
You peaked my interest, givenn LL2.x is based on Ubuntu 14.04 LTS
Lots of stuff on this subject, this was the last I found, a response to another post. You have probably tried this...
@wnl - Wirezfree is great source for LL...
This link is in NO WAY for Linux Lite - but informational.. https://wiki.archlinux.org/index.php/Sof...cess_point Hope it helps...

UPDATE:
https://gist.github.com/jhjguxin/5750212 Refers to hostapd (in synaptic??)
LL4.8 UEFI 64 bit ASUS E402W - AMD E2 (Quad) 1.5Ghz  - 4GB - AMD Mullins Radeon R2
LL5.8 UEFI 64 bit Test UEFI Kangaroo (Mobile Desktop) - Atom X5-Z8500 1.44Ghz - 2GB - Intel HD Graphics
LL4.8 64 bit HP 6005- AMD Phenom II X2 - 8GB - AMD/ATI RS880 (HD4200)
LL3.8 32 bit Dell Inspiron Mini - Atom N270 1.6Ghz - 1GB - Intel Mobile 945GSE Express  -- Shelved
BACK LL5.8 64 bit Dell Optiplex 160 (Thin) - Atom 230 1.6Ghz - 4GB-SiS 771/671 PCIE VGA - Print Server
Running Linux Lite since LL2.2
Reply