Hello
I have a running capsman with several SSIDs deployed (open, psk and radius), i want to add a new SSID which points to a new external Radius server. Following other topics here, it seems that “called id” field in /radius refers to ssid, without mention in official documentation.
The only example i found in documentation was referring to /capsman version, and not /interface/wifi/capsman.
here is the configuration:
Only package installed: routeros 7.18.2
/interface wifi datapath
add disabled=no name=dp-31 vlan-id=31
add disabled=no name=dp-1087 vlan-id=1087
/interface wifi security
add authentication-types=wpa2-eap,wpa3-eap disabled=no eap-accounting=yes \
eap-certificate-mode=no-certificates eap-methods=peap name=sec-radius
/interface wifi configuration
add country=France datapath=dp-31 name=cfg-dgs security=sec-radius ssid=dgs
add country=France datapath=dp-1087 name=cfg-interne security=sec-radius ssid=interne
/radius
add address=10.85.0.250 called-id=dgs require-message-auth=no service=wireless
add address=10.85.0.251 called-id=interne require-message-auth=no service=wireless
With this configuration, no radius is used when client tries to connect (all counters stay at zero).
If i remove called-id field, all connection requests are handled only by the first radius server.
Thanks for hints.