Archer C7v2에서 OpenWRT Barrier Breaker를 멍청한 액세스 포인트로 구성하려고 합니다. 그러면 WAN 이더넷 포트가 내 네트워크에 연결되고 Wi-Fi나 다른 LAN 포트에 연결된 모든 장치가 원활하게 네트워크의 일부가 되고 완전한 기능. 사용권. 또한 멍청한 AP 라우터는 DHCP를 통해 IP 주소를 얻어야 구성을 위해 연결할 수 있습니다.
http://wiki.openwrt.org/doc/recipes/dumbap내가 원하는 것에 대한 지침이 있다고 생각하지만 하드웨어와 기본 구성이 약간 다른 다른 라우터의 예 형식입니다. 그래서 나는 이 특정 라우터에 대한 나의 이해를 확인하고 싶었습니다. 특히 이 라우터의 안전 모드는 대략적인 것처럼 보이기 때문에(https://dev.openwrt.org/ticket/13701).
라우터 모델은 다음과 같이 설명됩니다.http://wiki.openwrt.org/toh/tp-link/tl-wdr7500아래에 현재 구성을 포함했습니다.
다음은 몇 가지 구체적인 질문입니다.http://wiki.openwrt.org/doc/recipes/dumbap이 라우터와 관련하여:
- 제 생각에는 "스위치 및 개인 WAN" 사례가 있는 것 같습니다. 맞나요? (스위치가 없거나 스위치만 있는 것이 아님)
- 이사해야 하나요?둘 다포트 1과 6을 VLAN 1에 넣고 VLAN 2를 제거하시겠습니까?
option proto 'dhcp'
고정 IP 구성을 LAN 인터페이스로 바꿔야겠죠? 그렇지 않으면 네트워크의 기본 라우터도 192.168.1.1이 됩니다.- 수행
option ifname 'eth0.1 eth1'
및 삭제 명령이 모두 표시config interface 'wan'
되고eth0
파일 어디에도 표시되지 않습니다. "vlan 1"이 구성에 기록eth0
되도록 VLAN 1에 어떻게 연결합니까 ?eth0.1
/etc/config/네트워크:
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/무선:
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 '***'
답변1
알아냈습니다(다행히 안전 장치 모드가 작동합니다. 그렇지 않으면 문제가 발생했을 것입니다). 내가 저지른 주된 실수는http://wiki.openwrt.org/doc/recipes/dumbap이 VLAN은 이라고 합니까 switch0.1
? eth0.1
그리고 어떤 이유로 라디오가 비활성화되었습니다.
/etc/config/wireless에서 필요한 변경 사항:
option disabled '1'
취소선- (dumb AP 모드와 엄격하게 관련되지 않음) 위와 같이 VHT80 모드(웹 UI에서는 사용할 수 없음)를 설정합니다.http://wiki.openwrt.org/toh/tp-link/tl-wdr7500
/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'
# added switch0.1 in here and changed to dhcp
config interface 'lan'
option ifname 'switch0.1 eth1'
option force_link '1'
option type 'bridge'
option proto 'dhcp'
# option proto 'static'
# option ipaddr '192.168.1.1'
# option netmask '255.255.255.0'
# option ip6assign '60'
# commented out
#config interface 'wan'
# option ifname 'eth0'
# option proto 'dhcp'
# commented out
#config interface 'wan6'
# option ifname '@wan'
# option proto 'dhcpv6'
config switch
option name 'switch0'
option reset '1'
option enable_vlan '1'
# added 1 and 6 here
config switch_vlan
option device 'switch0'
option vlan '1'
option ports '0 1 2 3 4 5 6'
#config switch_vlan
# option device 'switch0'
# option vlan '2'
# option ports '1 6'
그런 다음 Wiki에 설명된 대로 방화벽과 DHCP 서버를 비활성화합니다.