I am trying to configure OpenWRT Barrier Breaker on Archer C7v2 to act as a dumb access point, so the WAN ethernet port will be connected to my network, and anything connected to wifi or the other LAN ports will seamlessly become part of the network with full access. The dumb AP router should also get an IP address via DHCP, so I can connect to it for configuration.
http://wiki.openwrt.org/doc/recipes/dumbap has the instructions I want, I think, but they are in the form of an example with another router that has slightly different hardware and default config. So I'm wanting to check my understanding for this particular router. Especially because failsafe mode on this router appears to be sketchy (https://dev.openwrt.org/ticket/13701 ).
The router model is described here: http://wiki.openwrt.org/toh/tp-link/tl-wdr7500 and I've included the current config below.
Here are some specific questions about http://wiki.openwrt.org/doc/recipes/dumbap as it relates to this router:
- I think I have the "switch and dedicated WAN" case, correct? (not switchless or switch only)
- should I move both ports 1 and 6 into vlan 1 and delete vlan 2?
- I should replace the static IP config with
option proto 'dhcp'on the lan interface right? otherwise the main router on the network would also be 192.168.1.1 - it says to do
option ifname 'eth0.1 eth1'but also to deleteconfig interface 'wan', and after thateth0won't appear anywhere in the file; how doeseth0get attached to vlan 1 such thateth0.1is the way to write "vlan 1" in the config?
/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 globals 'globals' option ula_prefix 'fddc:9283:7080::/48' config interface 'lan' option ifname 'eth1' option force_link '1' option type 'bridge' option proto 'static' option ipaddr '192.168.1.1' option netmask '255.255.255.0' option ip6assign '60' config interface 'wan' option ifname 'eth0' option proto 'dhcp' config interface 'wan6' option ifname '@wan' option proto 'dhcpv6' config switch option name 'switch0' option reset '1' option enable_vlan '1' config switch_vlan option device 'switch0' option vlan '1' option ports '0 2 3 4 5' config switch_vlan option device 'switch0' option vlan '2' option ports '1 6' /etc/config/wireless:
config wifi-device 'radio0' option type 'mac80211' option channel '36' option path 'pci0000:01/0000:01:00.0' option disabled '1' option txpower '17' option country 'US' config wifi-iface option device 'radio0' option network 'lan' option mode 'ap' option encryption 'psk2' option key '***' option ssid 'myssid-1' config wifi-device 'radio1' option type 'mac80211' option channel '11' option hwmode '11g' option path 'platform/qca955x_wmac' option htmode 'HT20' option disabled '1' option txpower '30' option country 'US' config wifi-iface option device 'radio1' option network 'lan' option mode 'ap' option ssid 'myssid-2' option encryption 'psk2' option key '***'