I am attempting to do something that should be simple. I have an SXT that I want to function as a WDS AP, accepting wireless clients and a WDS repeater. The WDS repeater should accept clients and repeat. All of this should be bridged.
The repeater is not repeating. It is connecting to the wireless interface, not the WDS interface.
HELP!!
Master:
# jan/02/1970 00:27:55 by RouterOS 6.1
# software id = H07S-XF0G
#
/interface bridge
add l2mtu=1600 name=bridge1 protocol-mode=rstp
/interface wireless
set 0 band=2ghz-b/g/n channel-width=20/40mhz-ht-above country="united states" \
disabled=no distance=1 ht-rxchains=0,1 ht-txchains=0,1 l2mtu=2290 mode=\
ap-bridge ssid=NewHopeUMC tx-power=10 tx-power-mode=all-rates-fixed \
wds-default-bridge=bridge1 wds-mode=dynamic wireless-protocol=802.11
/interface ethernet
set 0 name=eth1
/interface wireless nstreme
set wlan1 enable-nstreme=yes enable-polling=no framer-limit=4000 \
framer-policy=best-fit
/interface wireless security-profiles
set [ find default=yes ] authentication-types=wpa2-psk mode=dynamic-keys \
supplicant-identity=MikroTik wpa-pre-shared-key=new-hope-rocks \
wpa2-pre-shared-key=new-hope-rocks
/ip hotspot user profile
set [ find default=yes ] idle-timeout=none keepalive-timeout=2m \
mac-cookie-timeout=3d
/ip pool
add name=default-dhcp ranges=192.168.88.10-192.168.88.254
add name=dhcp ranges=172.17.1.10-172.17.1.200
/ip dhcp-server
add address-pool=default-dhcp interface=eth1 name=default
/interface bridge port
add bridge=bridge1 interface=eth1
add bridge=bridge1 interface=wlan1 path-cost=50
/ip address
add address=192.168.1.2/24 comment="local ip" interface=bridge1 network=\
192.168.1.0
/ip dhcp-server network
add address=172.17.1.0/24 comment="Local DHCP" dns-server=172.17.1.1 gateway=\
172.17.1.1 netmask=24
/ip dns
set allow-remote-requests=yes cache-size=8192KiB max-udp-packet-size=8192 \
servers=65.24.0.169,8.8.8.8
/ip dns static
add address=192.168.88.1 name=router
/ip firewall connection tracking
set enabled=no
/ip firewall filter
add chain=input comment="default configuration" disabled=yes protocol=icmp
add chain=input comment="default configuration" connection-state=established \
disabled=yes
add chain=input comment="default configuration" connection-state=related \
disabled=yes
add action=drop chain=input comment="default configuration" disabled=yes \
in-interface=wlan1
/ip firewall nat
add action=masquerade chain=srcnat comment="default configuration" \
out-interface=wlan1 to-addresses=0.0.0.0
/ip route
add distance=1 gateway=192.168.1.1
/ip upnp
set allow-disable-external-interface=no enabled=yes
/system identity
set name=NewHope-SXT-AP
/tool mac-server
set [ find default=yes ] disabled=yes
add interface=eth1
add interface=wlan1
/tool mac-server mac-winbox
set [ find default=yes ] disabled=yes
add interface=eth1
add interface=wlan1
Repeater
# jan/02/1970 01:42:13 by RouterOS 6.1
# software id = WYGH-XAIH
#
/interface bridge
add admin-mac=D4:CA:6D:6C:BB:9F auto-mac=no l2mtu=2290 name=bridge1 \
protocol-mode=rstp
/interface wireless
set 0 band=2ghz-b/g/n country="united states" disabled=no distance=1 \
ht-rxchains=0,1 ht-txchains=0,1 l2mtu=2290 mode=station-wds scan-list=\
2400-2500 ssid=NewHopeUMC tx-power=28 tx-power-mode=all-rates-fixed \
wds-default-bridge=bridge1 wds-mode=dynamic wireless-protocol=802.11
/interface ethernet
set 0 name=ether1-gateway
set 1 name=ether2-master-local
set 2 master-port=ether2-master-local name=ether3-slave-local
set 3 master-port=ether2-master-local name=ether4-slave-local
set 4 master-port=ether2-master-local name=ether5-slave-local
/interface wireless wds
add disabled=no master-interface=wlan1 name=wds1
/interface wireless nstreme
set wlan1 enable-nstreme=yes
/interface wireless security-profiles
set [ find default=yes ] authentication-types=wpa2-psk eap-methods=\
passthrough mode=dynamic-keys supplicant-identity=MikroTik \
wpa-pre-shared-key=new-hope-rocks wpa2-pre-shared-key=new-hope-rocks
/ip hotspot user profile
set [ find default=yes ] idle-timeout=none keepalive-timeout=2m \
mac-cookie-timeout=3d
/ip pool
add name=default-dhcp ranges=192.168.88.10-192.168.88.254
/ip dhcp-server
add address-pool=default-dhcp interface=bridge1 name=default
/interface bridge port
add bridge=bridge1 interface=ether2-master-local
add bridge=bridge1 interface=wlan1
add bridge=bridge1 interface=ether1-gateway
add bridge=bridge1 interface=wds1 path-cost=5
/ip address
add address=192.168.1.3/24 comment="default configuration" interface=bridge1 \
network=192.168.1.0
/ip firewall connection tracking
set enabled=no
/ip firewall filter
add chain=forward comment="default configuration" connection-state=\
established disabled=yes
add chain=forward comment="default configuration" connection-state=related \
disabled=yes
add chain=forward comment="default configuration" connection-state=invalid \
disabled=yes
/ip firewall nat
add action=masquerade chain=srcnat comment="default configuration" disabled=\
yes out-interface=ether1-gateway
/ip route
add distance=1 gateway=192.168.1.1
/system identity
set name=NewHopeUMC-AP
/system leds
set 0 interface=wlan1




