我跟着这些说明关于如何将我的 TP-Link TL-WR1043ND 设置为哑 AP:
- 闪现全新姿态调整12.09-rc1
- 登录LuCI,设置密码
- 在“系统”>“启动”下禁用并停止防火墙和 dnsmasq
- 启用无线
我无法通过无线连接的其他设备访问互联网。 Windows 显示“访问受限”,iPad 显示“未找到服务器”或类似信息。
我开始桥接 LAN 和 WAN 接口。我将 /etc/config/network 文件更改为:
config interface 'loopback'
option ifname 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config interface 'lan'
option ifname 'eth0.1'
option type 'bridge'
option proto 'static'
option ipaddr '192.168.1.1'
option netmask '255.255.255.0'
config interface 'wan'
option ifname 'eth0.2'
option proto 'dhcp'
config switch
option name 'rtl8366rb'
option reset '1'
option enable_vlan '1'
config switch_vlan
option device 'rtl8366rb'
option vlan '1'
option ports '1 2 3 4 5t'
config switch_vlan
option device 'rtl8366rb'
option vlan '2'
option ports '0 5t'
对此:
...
config interface 'lan'
option ifname 'eth0.1 eth0.2'
option type 'bridge'
option proto 'static'
option ipaddr '192.168.1.1'
option netmask '255.255.255.0'
#config interface 'wan'
# option ifname 'eth0.2'
# option proto 'dhcp'
...
我这样做是因为 wiki 页面说“将 LAN VLAN 与 WAN 接口桥接在一起”和“删除现有的 WAN 接口 - 如果有的话”。我必须远程登录到故障安全模式才能从中恢复,所以这显然是一个糟糕的举动。
我想知道路由器是否配置正确,但我的服务器没有正确配置。我的设置是这样的:
OpenWrt <-> Ubuntu running dnsmasq, firewall, squid <-> DSL modem <-> Internet
服务器有两个接口:其中一个配置为 PPPoE,另一个只是静态 IP。调制解调器以透明桥接模式运行。我不认为问题出在服务器上,但我肯定是错的。
任何帮助表示赞赏。
答案1
问题已解决:我需要将 wan.proto 设置为 none。除非 TP-Link TL-WR1043ND v1.8 存在影响 WAN/LAN 端口的硬件错误,否则不需要这样做。
感谢 #openwrt 上的 g0rdon 和 FreezingCold 帮助我。