Skip to content

W60G

W60G is MikroTik’s implementation of the 802.11ad standard, capable of providing Gigabit Ethernet speeds over wireless networks at 60GHz. This technology extends your gigabit network over a transparent AES-encrypted wireless 60GHz link without the problems typically associated with wired or traditional wireless connections.

The W60G wireless solution delivers high-speed wireless connectivity using the 60GHz frequency band. This band offers significant advantages for short to medium-range point-to-point and point-to-multipoint links, including minimal interference from other devices and extremely high data rates.

  • Gigabit Speeds: Achieves data rates up to several gigabits per second
  • 60GHz Operation: Uses the relatively uncongested 60GHz frequency band
  • AES Encryption: Automatic transparent encryption for secure links
  • Beamforming: Advanced beamforming technology for directional transmission
  • License Levels: Different capabilities based on RouterOS license level
  • Multiple Modes: Supports AP-bridge, bridge, station-bridge, and sniff modes

MikroTik offers several W60G-capable devices, each designed for specific use cases:

DeviceBest ForLicense IncludedAntenna Type
Wireless Wire KitPtP links up to 200mLevel 3Integrated
wAP 60GFlexible deploymentLevel 360° beamforming
wAP 60G APPtMP installationsLevel 460° beamforming
SXTsq Lite 60Compact client devicesLevel 360° beamforming
Wireless Wire DishLong-range PtP up to 1500mLevel 3Narrow beam
LHG 60GLong-distance linksLevel 3Very narrow beam
Cube Lite 60Indoor/small deploymentsLevel 3Wide coverage
Cube 60Pro acHigh-performance indoorLevel 3Wide coverage

W60G functionality requires the following RouterOS packages:

  • system - Core RouterOS system
  • wireless - Wireless package with wireless protocols and features

W60G devices come pre-configured in paired kits, but manual configuration allows for customized deployments and multi-device setups.

PropertyValuesDefaultDescription
arpdisabled, enabled, proxy-arp, reply-onlyenabledARP mode for the interface
arp-timeoutauto, integerautoARP cache timeout in seconds
commentstring(empty)Interface description
disabledyes, noyesWhether interface is disabled
frequency58320, 60480, 62640, 64800, 66000, autoautoOperating frequency in MHz
isolate-stationsyes, noyesPrevent communication between connected clients
l2mtu0-78821600Layer 2 Maximum Transmission Unit
mac-addressMAC address(auto)MAC address of the radio interface
mdmg-fixyes, nonoPoint-to-multi-point stability fix for wAP60Gx3
modeap-bridge, bridge, sniff, station-bridgebridgeInterface operation mode
mtu32-81921500Layer 3 Maximum Transmission Unit
namestringwlan60-1Name of the interface
passwordstring(random)AES encryption password
put-stations-in-bridgebridge name(none)Bridge for automatic station interfaces
regionasia, australia, canada, china, eu, japan, no-region-set, usano-region-setRegulatory region for frequency limits
scan-listcomma-separated58320,60480,62640,64800Allowed frequencies in station mode
ssidstring (0-32 chars)System IdentityNetwork name
tx-sector0-63, autoautoManual beamforming sector override

Enable the interface and set basic parameters:

/interface w60g set wlan60-1 disabled=no ssid=My60GLink password=SecurePass123 mode=bridge

Create a bridge and add W60G interface:

/interface bridge add name=bridge1
/interface bridge port add bridge=bridge1 interface=ether1
/interface bridge port add bridge=bridge1 interface=wlan60-1
/ip address add address=192.168.100.1/24 interface=bridge1

View detailed interface statistics:

/interface w60g print stats name=wlan60-1

The stats output provides information about beamforming events, packet counts, and error rates:

beamforming-event: 310
tx-io-msdu: 0
tx-sw-msdu: 154663
tx-fw-msdu: 102
tx-ppdu: 220147
tx-ppdu-from-q: 40327
tx-mpdu-new: 154663
tx-mpdu-total: 184759
tx-mpdu-retry: 30096
rx-ppdu: 166636
rx-mpdu-crc-err: 4817
rx-mpdu-crc-ok: 285649

When devices connect to an Access Point, they appear as separate station interfaces under /interface w60g station.

PropertyValuesDefaultDescription
parentstringwlan60-*Parent interface name
put-in-bridgenone, parent, bridge-nameparentBridge assignment for station
remote-addressMAC address(auto)MAC address of AP interface
/interface w60g station print
/interface w60g station print stats
/interface w60g station monitor

In station mode, you can scan for available Access Points within range.

/interface w60g scan wlan60-1

Important notes about scanning:

  • The interface is disabled during scanning
  • The wireless link is disconnected temporarily
  • Background scanning is not supported
  • Scan results show available APs with their SSID, signal strength, and frequency

Use the monitor command to view the current state of an active wireless link.

/interface w60g monitor wlan60-1

Sample output:

connected: yes
frequency: 58320
remote-address: 04:D6:AA:AA:AA:AA
mcs: 8
phy-rate: 2.3Gbps
signal: 80
rssi: -68
tx-sector: 28
tx-sector-info: center
distance: 160.9m
FieldDescription
connectedWhether link is established
frequencyCurrent operating frequency in MHz
remote-addressMAC address of remote device
mcsModulation and Coding Scheme index
phy-ratePhysical layer data rate
signalSignal quality index (0-100)
rssiReceived Signal Strength Indicator in dBm
tx-sectorCurrently used transmit beamforming sector
tx-sector-infoDirection information from beamforming pattern
distanceMeasured distance to remote device

The align mode provides rapid frame exchange for precise link optimization.

/interface w60g align wlan60-1

Sample output:

connected: yes
frequency: 58320
remote-address: 04:D6:AA:AA:AA:AB
tx-mcs: 6
tx-phy-rate: 1540.0Mbps
signal: 70
rssi: -62
10s-average-rssi: -63.1
tx-sector: 62
tx-sector-info: left 19 degrees, up 26.6 degrees
rx-sector: 96
distance: 220.88m
tx-packet-error-rate: 5%

Alignment tips:

  • Watch the rssi and 10s-average-rssi values
  • Use tx-sector-info for directional adjustment guidance
  • Higher MCS values indicate better link quality
  • Packet error rate should be below 5% for optimal performance

Sniff mode enables capturing 802.11ad frames for packet analysis.

/interface w60g set wlan60-1 mode=sniff disabled=no

Once in sniff mode, the interface can be used with the Packet Sniffer tool for detailed wireless traffic analysis. Sniff mode cannot be used simultaneously with regular bridge or station modes.

/tool sniffer start interface=wlan60-1

Wireless Wire kits and wAP 60G devices ship pre-configured as point-to-point bridges. They have matching SSID and randomly generated passwords that work out of the box.

To configure client mode:

/interface w60g set wlan60-1 password="your_password" ssid="your_ssid" disabled=no mode=station-bridge

If starting from a reset configuration:

{
/interface bridge add name=bridge1
/interface bridge port add bridge=bridge1 interface=ether1
/interface bridge port add bridge=bridge1 interface=wlan60-1
/ip address add address=192.168.88.1/24 interface=bridge1
}

The wAP 60G AP with Level 4 license supports multiple connected clients.

/interface w60g set wlan60-1 \
password="SecurePassword123" \
ssid="My60GNetwork" \
disabled=no \
mode=ap-bridge \
put-stations-in-bridge=bridge1
/interface w60g set wlan60-1 \
password="SecurePassword123" \
ssid="My60GNetwork" \
disabled=no \
mode=station-bridge
/interface w60g station print
# Output:
Flags: X - disabled, R - running
0 name="wlan60-station-1" parent=wlan60-1 remote-address=AA:AA:AA:AA:AA:AA ...
1 name="wlan60-station-2" parent=wlan60-1 remote-address=AA:AA:AA:AA:AB:AA ...

To prevent communication between connected clients on the same AP:

/interface w60g set wlan60-1 isolate-stations=yes
ChannelFrequency (MHz)
157240
258320
359400
460480
561560
662640

Different regulatory regions limit available frequencies:

RegionLower (GHz)Upper (GHz)Channels
USA57.2470.201, 2, 3, 4, 5, 6
Canada57.2463.721, 2, 3
Asia57.2463.721, 2, 3
EU57.2465.881, 2, 3, 4
Japan57.2465.881, 2, 3, 4
Australia57.2465.881, 2, 3, 4
China59.4063.722, 3
/interface w60g set wlan60-1 frequency=58320
/interface w60g set wlan60-1 scan-list=58320,60480,62640
DeviceSingle PatternFull Span (H/V)EIRP
wAP 60G / AP15-20°60° / 30°< 40 dBm
wAP 60Gx3 AP15-20°180° / 30°< 40 dBm
SXTsq Lite 6015-20°60° / 30°< 40 dBm
Cube Lite 604-8°12° / 12°< 40 dBm
Cube 60Pro ac4-8°11° / 11°< 40 dBm
CubeSA 60Pro ac15°60° / 30°< 40 dBm
LHG Lite/60G< 1°3° / 3°< 55 dBm
Wireless Wire Dish< 1°3° / 3°< 55 dBm
Wireless Wire nRAY< 1°3° / 3°< 55 dBm
DeviceTested DistanceRecommended Maximum
Wireless Wire Kit200m200m
Wireless Wire Dish2500m1500m
wAP 60G devicesVariesKeep clear line of sight
LHG 60GLong rangePrecise alignment required
  1. Verify line of sight - 60GHz signals require clear line of sight
  2. Check scan-list - Ensure client’s scan-list includes AP frequency
  3. Confirm frequency - Both devices must use same frequency
  4. Verify password - SSID and password must match exactly
  5. Check mode - One device must be in ap-bridge mode, other in station-bridge
/interface w60g print
/interface w60g monitor wlan60-1
  1. Check alignment - Use align mode for precise positioning
  2. Verify obstructions - Remove objects in the signal path
  3. Adjust tx-sector - Try manual sector selection for better signal
  4. Consider weather - Heavy rain can attenuate 60GHz signals
  5. Check distance - Ensure device is within recommended range
  1. Reduce distance - Move devices closer if possible
  2. Enable ATPC - Adaptive Transmit Power Control helps maintain link
  3. Check for interference - Other 60GHz devices may cause issues
  4. Update firmware - Ensure both devices run latest RouterOS

From RouterOS 6.42rc6, W60G interfaces support SNMP monitoring.

Main Interface OIDs:

OIDDescription
.1.3.6.1.4.1.14988.1.1.1.8.1.2.*Mode
.1.3.6.1.4.1.14988.1.1.1.8.1.3.*SSID
.1.3.6.1.4.1.14988.1.1.1.8.1.4.*Connected status
.1.3.6.1.4.1.14988.1.1.1.8.1.5.*Remote MAC address
.1.3.6.1.4.1.14988.1.1.1.8.1.6.*Frequency
.1.3.6.1.4.1.14988.1.1.1.8.1.7.*MCS
.1.3.6.1.4.1.14988.1.1.1.8.1.8.*Signal quality
.1.3.6.1.4.1.14988.1.1.1.8.1.9.*TX sector
.1.3.6.1.4.1.14988.1.1.1.8.1.11.*Sector info
.1.3.6.1.4.1.14988.1.1.1.8.1.12.*RSSI
.1.3.6.1.4.1.14988.1.1.1.8.1.13.*PHY rate

Station Interface OIDs:

OIDDescription
.1.3.6.1.4.1.14988.1.1.1.9.1.2.*Connected status
.1.3.6.1.4.1.14988.1.1.1.9.1.3.*Remote MAC
.1.3.6.1.4.1.14988.1.1.1.9.1.4.*MCS
.1.3.6.1.4.1.14988.1.1.1.9.1.5.*Signal quality
.1.3.6.1.4.1.14988.1.1.1.9.1.6.*TX sector
.1.3.6.1.4.1.14988.1.1.1.9.1.8.*Data rate (Mbps)
.1.3.6.1.4.1.14988.1.1.1.9.1.9.*RSSI
.1.3.6.1.4.1.14988.1.1.1.9.1.10.*Distance (cm)

Configuration Reset for Wireless Wire Kits

Section titled “Configuration Reset for Wireless Wire Kits”

Wireless Wire kits have a special reset behavior for factory restoration:

5-second button hold (USR LED flashing): Resets to password-protected state 10-second button hold (USR LED solid after flashing): Completely removes configuration

After complete reset, only MAC-telnet connection is available:

/tool mac-telnet mac-address=AA:BB:CC:DD:EE:FF