返回列表 發帖

Network Interface——TL-WR1043ND

本帖最後由 角色 於 2013-2-13 20:04 編輯

虽然下面的帖子主要用ASUS router,但是里面内容也能用于1043ND router。

http://wiki.openwrt.org/doc/networking/network.interfaces

The following link gives a very reference for the TL-WR1043ND router.

http://translate.google.com/tran ... r1043nd-pod-openwrt

TOP

  1. config 'interface' 'loopback'
  2.         option 'ifname' 'lo'
  3.         option 'proto' 'static'
  4.         option 'ipaddr' '127.0.0.1'
  5.         option 'netmask' '255.0.0.0'

  6. config 'interface' 'lan'
  7.         option 'ifname' 'eth0.1'
  8.         option 'type' 'bridge'
  9.         option 'proto' 'static'
  10.         option 'netmask' '255.255.255.0'
  11.         option 'ipaddr' '192.168.10.1'

  12. config 'interface' 'wan'
  13.         option 'ifname' 'eth0.2'
  14.         option 'proto' 'dhcp'

  15. config 'switch'
  16.         option 'name' 'rtl8366rb'
  17.         option 'reset' '1'
  18.         option 'enable_vlan' '1'

  19. config 'switch_vlan'
  20.         option 'device' 'rtl8366rb'
  21.         option 'vlan' '1'
  22.         option 'ports' '1 2 3 4 5t'

  23. config 'switch_vlan'
  24.         option 'device' 'rtl8366rb'
  25.         option 'vlan' '2'
  26.         option 'ports' '0 5t'
複製代碼

TOP

返回列表