Wifi

TP-Link TL-WR1043ND 作為啞接入點

  • May 19, 2013

我按照以下說明將我的 TP-Link TL-WR1043ND 設置為啞 AP:

  1. 閃現全新姿態調整12.09-rc1
  2. 登錄 LuCI,設置密碼
  3. 在 System > Startup 下禁用和停止防火牆和 dnsmasq
  4. 啟用無線

我無法通過無線連接的其他設備訪問網際網路。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 介面 - 如果有的話”。我不得不 telnet 進入故障安全模式才能從中恢復,所以這顯然是一個糟糕的舉動。

我想知道路由器是否配置正確,但我的伺服器沒有。我的設置是這樣的:

OpenWrt <-> Ubuntu running dnsmasq, firewall, squid <-> DSL modem <-> Internet

伺服器有兩個介面:一個配置為PPPoE,另一個只是一個靜態IP。調製解調器在透明橋接模式下執行。我不認為問題出在伺服器上,但我肯定是錯的。

任何幫助表示讚賞。

問題已解決:我需要將 wan.proto 設置為 none。除非 TP-Link TL-WR1043ND v1.8 存在影響 WAN/LAN 埠的硬體錯誤,否則這不是必需的。

感謝 #openwrt 上的 g0rdon 和 FreezingCold 幫助我。

引用自:https://unix.stackexchange.com/questions/76324