Obsidean_VM/01-Documentation/Routers/Mikrotik - Network Redes/Mikrotik - Comandos WIFI - ...

51 lines
1.6 KiB
Markdown

### ===== CLIENTES LOCALES (interfaces wlan1/wlan2) =====
#### Ver clientes conectados a wlan1 (2.4 GHz)
/interface wireless registration-table print where interface=wlan1
#### Ver clientes conectados a wlan2 (5 GHz)
/interface wireless registration-table print where interface=wlan2
#### Ver todos los clientes WiFi locales
/interface wireless registration-table print
### ===== CLIENTES DE CAPSMAN =====
#### Ver todos los clientes conectados a través de CAPsMAN
/caps-man registration-table print
#### Ver clientes de CAP por configuración específica (2Ghz en tu caso)
/caps-man registration-table print where configuration=2Ghz
#### Ver información detallada de clientes CAP
/caps-man registration-table print detail
#### Ver solo información específica de clientes CAP
/caps-man registration-table print brief
#### ===== VISTA COMPLETA (LOCALES + CAP) =====
```bash
# Script para ver todo junto
:put "=== CLIENTES LOCALES WLAN1 (2.4 GHz) ==="
/interface wireless registration-table print where interface=wlan1
:put ""
:put "=== CLIENTES LOCALES WLAN2 (5 GHz) ==="
/interface wireless registration-table print where interface=wlan2
:put ""
:put "=== CLIENTES CAPSMAN ==="
/caps-man registration-table print
```
#### ===== INFORMACIÓN DE LOS CAPS =====
#### Ver los CAPs conectados al manager
/caps-man remote-cap print
#### Ver estado de los CAPs
/caps-man remote-cap print detail
#### ===== MONITOREO =====
#### Monitorear clientes CAP en tiempo real
/caps-man registration-table print interval=5
#### Para ver información del DHCP y relacionar IPs con MACs
/ip dhcp-server lease print where active=yes