|
From: Frank B. <fbe...@gm...> - 2025-11-12 14:24:48
|
I solved my issues. To get the Calling Station Id and SSID to show up in the RADIUS Audit logs, I added the following in the post-auth section in the packetfence-tunnel config after finding this old post from https://freeradius-users.freeradius.narkive.com/tQmPSKkg/vendor-attributes-not-copied-to-inner-tunnel if (&outer.request:Called-Station-SSID) { update request { &Called-Station-SSID := &outer.request:Called-Station-SSID } } if (&outer.request:Calling-Station-Id) { update request { &Calling-Station-Id := &outer.request:Calling-Station-Id } } I hope I am replying to this mailing list correctly. On Fri, Nov 7, 2025 at 9:29 PM Frank B. <fbe...@gm...> wrote: > I have been trying to get some missing RADIUS Audit Logs info like the > Calling Station ID and SSID show up in packetfence for PEAP with TLS > inner-tunnel but no success. PEAP-TLS auth is working but just missing > those two info in that page. > > NAS IP Address and Server IP fields were also missing before but I fixed > those by adding "packetfence-nas-ip-address" and update { > &request:PacketFence-Radius-Ip := "%{Packet-Dst-IP-Address}" in the > packetfence-tunnel config. > > Does anyone know what settings or variables to add to the > packetfence-tunnel to get Calling Station ID and SSID info? I just need > those info so the output is the same for both PEAP-TLS and EAP-TLS > authentication. > > I am running Packetfence v15 installed from ISO. Thank you. > > |