1. To connect to the Mikrotik
a. Connect the PoE injector to the Mikrotik LAN port and to the PC NIC Card.
b. Plug in AC adapter to the PoE injector
i. Most mikrotik’s will beep 2x to indicate they are fully booted
c. The default IP address for a Mikrotik is 192.168.88.1
d. Adding the PC an IP of 192.168.88.XXX/24
e. Open browser window and go to
http://192.168.88.1
f. Click on the winbox icon to download the configuration tool.
i.
g. Once downloaded, open the winbox tool and click on the “…” box to automatically discover the MAC address and IP address of the Mikrotik to be configured
i.
h. By default the username is “admin” with no password configured.
i. Once logged into the Mikrotik via the winbox we can start to configure the link
j. This configuration will extend a network link to a remote location using a wireless link no routing is performed.
i. *Example diagram
k. This setup will need 2 Mikrotik AP’s with directional antenna’s
i. The Mikrotik going on the local side will be referred to as “AP” and the Mikrotik on the remote side will be referred to as “Station”.
l. The first thing we will do is open up a “NEW TERMINAL” window
i. If this is a new Mikrotik and has “default configuration” loaded we will need to erase the default settings (This applies to AP and Station)
a. To do this we type in terminal window
i. [admin@Mikrotik AP] > /system reset-configuration
m. Set system identity on AP and Station
i. [admin@Mikrotik AP] > system identity set name=Mikrotik AP
ii. [admin@ Station] > system identity set name=Station
n. Create a bridge interface on AP and add ether1 and wlan1 interface to the bridge
i. [admin@Mikrotik AP] > interface bridge add name=wds-bridge
ii. [admin@Mikrotik AP] > interface bridge port add interface=ether1 bridge=wds-bridge
iii. [admin@Mikrotik AP] > interface wireless enable wlan1
iv. [admin@Mikrotik AP] > interface bridge port add interface=wlan1 bridge=wds-bridge
o. Create a bridge interface on Station and add ether1 and wlan1 interface to the bridge
i. [admin@Station] > interface bridge add name=wds-bridge
ii. [admin@ Station] > interface bridge port add interface=ether1 bridge=wds-bridge
iii. [admin@ Station] > interface wireless enable wlan1
iv. [admin@ Station] > interface bridge port add interface=wlan1 bridge=wds-bridge
p. Configure wlan1 interface on the AP
i. [admin@Mikrotik AP] > interface wireless set wlan1 ssid=bcf_p2p frequency=2447 channel-width=20mhz mode=bridge disabled=no radio-name=p2p_ap antenna-gain=13 country=”united states” band=2ghz-b frequency-mode=manual-txpower hide-ssid=yes adaptive-noise-immunity=ap-and-client-mode tx-power-mode=default
q. Configure wlan1 interface on the Station
i. [admin@Station] > interface wireless set wlan1 mode=station-wds ssid=bcf_p2p disabled=no frequency=2447 channel-width=20mhz radio-name=p2p_station antenna-gain=13 country=”united states” band=2ghz-b frequency-mode=manual-txpower adaptive-noise-immunity=ap-and-client-mode tx-power-mode=default
r. Create WDS interface on AP add the interface to the bridge
i. [admin@Mikrotik AP] > interface wireless set wlan1 wds-mode=dynamic wds-default-bridge=wds-bridge
s. Check to make sure the WDS link is established between the AP and Station
i. [admin@Mikrotik AP] interface wireless wds > print
Flags: X - disabled, R - running, D - dynamic
0 RD name="wds1" mtu=1500 mac-address=00:0B:6B:30:B4:A4 arp=enabled
disable-running-check=yes master-interface=wlan1
wds-address=00:0B:6B:35:E5:5C
t. Assign IP address to AP
i. [admin@Mikrotik AP] > ip address add address=10.1.35.XXX/24 interface=wds-bridge
u. Assign IP address to Station
i. [admin@Mikrotik AP] > ip address add address=10.1.35.XXX/24 interface=wds-bridge
v. Test the bridge by pinging from AP to Station
i. [admin@Mikrotik AP] > ping interface=wds-bridge 10.1.35.XXX
ii. [admin@ Station] > ping interface=wds-bridge 10.1.35.XXX
HOST SIZE TTL TIME STATUS
10.1.35.202 56 64 5ms
10.1.35.202 56 64 3ms
10.1.35.202 56 64 2ms
10.1.35.202 56 64 3ms
10.1.35.202 56 64 3ms
sent=5 received=5 packet-loss=0% min-rtt=2ms avg-rtt=3ms
max-rtt=5ms
w. Disable NAT/Mangle on AP and Station
i. [admin@Mikrotik AP] > ip firewall connection tracking set enabled=no
ii. [admin@ Station] > ip firewall connection tracking set enabled=no
x. Disable running check of WLAN1 interface on AP and Station
i. [admin@Mikrotik AP] > interface wireless set wlan1 disable-running-check=yes
ii. [admin@ Station] > interface wireless set wlan1 disable-running-check=yes
y. Set “admin” password for AP and Station
i. [admin@Mikrotik AP] > /password
old password:
new password: ******
retype new password: ******
ii. [admin@ Station] > /password
old password:
new password: ******
retype new password: ******
z. That’s it….