我正在尝试配置Vyatta,使其充当以太网桥的wifi。我目前正在用我的windows桌面做这件事,但是我想把它移到一个专用的Vyatta盒中。我有一个典型的linksys无线路由器,作为我的接入点。Vyatta盒中的无线网卡工作得很好,当它被配置为一个普通的无线客户端时,它能够连接。当我创建eth0和wlan0之间的桥梁时,局域网上的客户“幕后”Vyatta仍然无法连接。如果我在这种状态下重新启动Vyatta,它也将不再从无线网络获得IP地址。
任何帮助都是非常感谢的。
这是我的配置:
vyatta@Vinz-Clortho:~$ show configuration
interfaces {
bridge br0 {
aging 300
hello-time 2
max-age 20
priority 0
stp false
}
ethernet eth0 {
bridge-group {
bridge br0
}
duplex auto
hw-id 00:0d:60:c4:e5:cc
smp_affinity auto
speed auto
}
loopback lo {
}
wireless wlan0 {
address dhcp
bridge-group {
bridge br0
}
mode g
security {
wpa {
mode both
passphrase ****************
}
}
ssid SRT
type station
}
}
service {
ssh {
port 22
protocol-version v2
}
}
system {
host-name Vinz-Clortho
login {
user vyatta {
authentication {
encrypted-password ****************
}
level admin
}
}
ntp-server 0.vyatta.pool.ntp.org
package {
auto-sync 1
repository community {
components main
distribution stable
password ****************
url http://packages.vyatta.com/vyatta
username ""
}
}
syslog {
global {
facility all {
level notice
}
facility protocols {
level debug
}
}
}
time-zone US/Pacific
} 发布于 2010-12-20 05:03:21
不去。结果发现这还不可能。vyatta论坛:
一般来说,linux不支持站模式下的桥接无线。问题是,无线是基于内部的点对点,做桥接需要MAC地址欺骗。
https://serverfault.com/questions/214056
复制相似问题