무선 MikroTik SXT를 통한 VLAN

무선 MikroTik SXT를 통한 VLAN

두 개의 MikroTik SXT 사이의 무선 연결과 이 연결 끝에 있는 무선 AP를 통해 VLAN이 작동하도록 하려고 할 때 큰 문제를 발견했습니다.

설정은 다음과 같습니다.

DHCP-Server ------- SXT ====== SXT ---- AP

LAN  ---
WLAN ===

이 설정에서는 여러 액세스 포인트가 단일 DHCP 서버에 의해 제공되어야 하며 VLAN 백본을 통해 상호 연결됩니다. Wireless MikroTek Bridge가 없으면 패치 케이블만 사용하면 문제가 없지만 무선 브리지를 사용하면 모든 MicroTek 장치에서 DHCP 응답이 차단됩니다.

처음에는 MicroTek의 VLAN 구성이 누락된 것이라고 생각했지만 아무것도 변경하지 않고 추가했을 때 두 mikrotek 모두에서 다음 구성을 사용했습니다.

interface vlan add name=vlan1 interface=bridge vlan-id=1001 disable=no
ip address add address=192.168.160.12/24 interface=vlan0

브리지 및 무선 구성은 다음과 같습니다(문서화용).

system reset-configuration

interface bridge add name=bridge
interface bridge port add bridge=bridge interface=wlan1
interface bridge port add bridge=bridge interface=ether1 

ip address add interface=bridge address=192.168.151.14/24
ip address edit number=0 value-name=address
  192.168.88.1/24 -> 192.168.88.2/24

interface wireless set country="germany 5.8 fixed p-p" mode=station-pseudobridge ssid=XXX numbers=wlan1
interface wireless security-profiles add name=p1 authentication-types=wpa2-psk wpa2-pre-shared-key=xxx
interface wireless set security-profile=p1 numbers=wlan1
interface wireless enable numbers=wlan1

내가 놓쳤을 수도 있는 것을 아는 사람이 있나요? 감사해요!

답변1

결국 wds-mode=dynamic 인터페이스 옵션을 사용하여 문제를 해결했습니다.

system reset-configuration

interface bridge add name=bridge
interface bridge port add bridge=bridge interface=wlan1
interface bridge port add bridge=bridge interface=ether1

ip address add interface=bridge address=192.168.151.11/24
ip route add gateway=192.168.151.1

interface wireless set country="germany 5.8 fixed p-p" mode=bridge   ssid=ALARM-BR-BHP numbers=wlan1 
interface wireless set wlan1 wds-mode=dynamic wds-default-bridge=bridge
interface wireless security-profiles add name=alarm authentication-types=wpa2-psk wpa2-pre-shared-key=alarmkey
interface wireless set security-profile=alarm numbers=wlan1

interface wireless enable numbers=wlan1

관련 정보