个人工具

“UbuntuHelp:BridgingNetworkInterfaces”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
 
第3行: 第3行:
 
<<Include(Tag/StyleCleanup)>>
 
<<Include(Tag/StyleCleanup)>>
 
I struggled to find the right information, so I think this might be useful! If you want to write to me directly, my e-mail is on my wiki page at Ubuntu:HervéFache.
 
I struggled to find the right information, so I think this might be useful! If you want to write to me directly, my e-mail is on my wiki page at Ubuntu:HervéFache.
Also, consider this article: [[http://www.linux.com/article.pl?sid=06/07/10/1729226]] on the same subject.
+
Also, consider this article: [http://www.linux.com/article.pl?sid=06/07/10/1729226] on the same subject.
 
== Installing bridge utilities ==
 
== Installing bridge utilities ==
 
You will need the bridge utilities for that, which all you need to do is install the bridge-utils package.
 
You will need the bridge utilities for that, which all you need to do is install the bridge-utils package.
 
<pre><nowiki>
 
<pre><nowiki>
apt-get install bridge-utils  
+
apt-get install bridge-utils  
 
</nowiki></pre>
 
</nowiki></pre>
 
== Setting up bridge utilities ==
 
== Setting up bridge utilities ==
第14行: 第14行:
 
# This file describes the network interfaces available on your system
 
# This file describes the network interfaces available on your system
 
# and how to activate them. For more information, see interfaces(5).
 
# and how to activate them. For more information, see interfaces(5).
 +
 
# The loopback network interface
 
# The loopback network interface
 
auto lo
 
auto lo
第19行: 第20行:
 
address 127.0.0.1
 
address 127.0.0.1
 
netmask 255.0.0.0
 
netmask 255.0.0.0
 +
 +
 
# This is a list of hotpluggable network interfaces.
 
# This is a list of hotpluggable network interfaces.
 
# They will be activated automatically by the hotplug subsystem.
 
# They will be activated automatically by the hotplug subsystem.
第24行: 第27行:
 
auto ath0
 
auto ath0
 
auto br0
 
auto br0
 +
 +
 
# The internet network interface
 
# The internet network interface
 
iface eth0 inet dhcp
 
iface eth0 inet dhcp
 +
 +
 
# The wireless side of the bridge
 
# The wireless side of the bridge
 
iface ath0 inet manual
 
iface ath0 inet manual
wireless-essid MY_ESSID
+
  wireless-essid MY_ESSID
wireless-key **********
+
  wireless-key **********
wireless-mode master
+
  wireless-mode master
 +
 
 
# The local network bridge
 
# The local network bridge
 
iface br0 inet static
 
iface br0 inet static
bridge_ports ath0 eth1
+
  bridge_ports ath0 eth1
address 192.168.0.2
+
  address 192.168.0.2
netmask 255.255.255.0
+
  netmask 255.255.255.0
 
</nowiki></pre>
 
</nowiki></pre>
 
The explanation is as simple as this file: the system is going to start eth0 (the internet side network interface), ath0 (the wireless network interface) and br0 (the bridge). ath0 being 'manual' and not 'static' or 'dhcp', no IP will be assigned to it, but I need the 'auto' to set the wireless parameters. eth1 is set up automatically as part of the bridge setup.
 
The explanation is as simple as this file: the system is going to start eth0 (the internet side network interface), ath0 (the wireless network interface) and br0 (the bridge). ath0 being 'manual' and not 'static' or 'dhcp', no IP will be assigned to it, but I need the 'auto' to set the wireless parameters. eth1 is set up automatically as part of the bridge setup.

2010年5月19日 (三) 21:47的最新版本

<<Include(Tag/StyleCleanup)>> I struggled to find the right information, so I think this might be useful! If you want to write to me directly, my e-mail is on my wiki page at Ubuntu:HervéFache. Also, consider this article: [1] on the same subject.

Installing bridge utilities

You will need the bridge utilities for that, which all you need to do is install the bridge-utils package.

 apt-get install bridge-utils 

Setting up bridge utilities

With no further ado, this is my /etc/network/interfaces file:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback
address 127.0.0.1
netmask 255.0.0.0


# This is a list of hotpluggable network interfaces.
# They will be activated automatically by the hotplug subsystem.
auto eth0
auto ath0
auto br0


# The internet network interface
iface eth0 inet dhcp


# The wireless side of the bridge
iface ath0 inet manual
  wireless-essid MY_ESSID
  wireless-key **********
  wireless-mode master

# The local network bridge
iface br0 inet static
  bridge_ports ath0 eth1
  address 192.168.0.2
  netmask 255.255.255.0

The explanation is as simple as this file: the system is going to start eth0 (the internet side network interface), ath0 (the wireless network interface) and br0 (the bridge). ath0 being 'manual' and not 'static' or 'dhcp', no IP will be assigned to it, but I need the 'auto' to set the wireless parameters. eth1 is set up automatically as part of the bridge setup. Note: the bridge takes time to come up. Be patient! Before you start complaining, you should know that in fact, this does not work for me. For some reason, the atheros wireless interface goes back down in the process. I tried very hard to find a way to bring it back up, and the only one I could rely on was to add this in /etc/rc.local, just before the line containing 'exit 0':

ifconfig ath0 up

This is an ugly hack, but at least it does bring ath0 up... Note for Edgy users: the madwifi driver does not support setting the mode this way, and even using the required tool did not provide me a working access point.