Freeradius-Users
Threads by month
- ----- 2026 -----
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- 27050 discussions
Hi,
I’ve set up freeradius 3.0.17 quite some time ago to process ssh logins
based on LDAP/AD accounts (with group membership in post-auth) and this
works fine. I followed the guide on deployingradius.com (
http://deployingradius.com/documents/configuration/active_directory.html)
but haven’t implemented the mschap section as I didn’t need it at the time.
Now I am running into this need and I was trying to figure out why it
wasn’t working only to discover that I left the
DEFAULT Auth-Type = ntlm_auth
Line in the mods-config/files/authorize file. As expected this breaks my
attempts to include mschap.
My problem is that this is the only non-commented line in the entire file,
so rather than just delete the line I need to enter some other information
here to prevent the
ERROR: No Auth-Type found: rejecting the user via Post-Auth-Type = Reject
In the comments in the file it states that multiple DEFAULTs can be used
with Fall-Through so I tried this:
DEFAULT Auth-Type = ntlm_auth
Fall-Through = Yes
DEFAULT Auth-Type = mschap
But this doesn’t work. What is the best approach for this? I would like to
avoid having to name my users here since they are in ldap already and I
don’t know if a device will only authenticate using mschap or not (e.g. it
will be difficult to split this out in the clients.conf file).
My google skills are letting me down on this, some pointers in the right
direction would be very much appreciated.
Regards,
Niels
2
2
Hi Team,
How to configure Simultaneous-Use, do we required any script etc or we can
use inbuild feature.
--
Thanks & Regards
Aditya Vijjan
1
0
WPA Enterprise with Radius assigned VLAN from LDAP (Samba Active Directory)
by Christian Uhlmann 21 Mar '19
by Christian Uhlmann 21 Mar '19
21 Mar '19
Hello everybody,
I successfully got Freeradius running for WPA Enterprise with Samba
Active Diretory.
OS: Debian Buster
FreeRADIUS Version: 3.0.17
The /etc/freeradius/3.0/mods-available/ntlm_auth looks like this:
exec ntlm_auth {
wait = yes
program = "/usr/bin/ntlm_auth --request-nt-key --domain=HOME
--username=%{mschap:User-Name} --password=%{User-Password}"
}
Now I would also like to perform a VLAN assignment based on groups of
the user in the AD.
First my question: Is this in the post-auth over LDAP possible?
For this I have setup in the LDAP config
(/etc/freeradius/3.0/mods-available/ldap):
ldap {
server = "pdc.home.uhlmann.world"
port = 389
identity = "cn=radius-auth,cn=users,DC=home,DC=uhlmann,DC=world"
password = << secret password >>
basedn = "CN=Users,DC=home,DC=uhlmann,DC=world"
filter = "(sAMAccountName=%{%{Stripped-User-Name}:-%{User-Name}})"
tls {
start_tls = no
}
group {
base_dn = "CN=Users,DC=home,DC=uhlmann,DC=world"
name_attribute = cn
membership_filter =
"(|(member=%{control:Ldap-UserDn})(memberOf=%{%{Stripped-User-Name}:-%{User-Name}}))"
membership_attribute = 'memberOf'
}
options {
chase_referrals = no
rebind = yes
timeout = 10
timelimit = 3
net_timeout = 1
idle = 60
probes = 3
interval = 3
ldap_debug = 0x0028
}
}
In /etc/freeradius/3.0/sites-enabled/default I configured the following
in the post-auth section:
ldap
if (LDAP-Group == "wlan-gast") {
update reply {
Tunnel-type = VLAN
Tunnel-medium-type = IEEE-802
Tunnel-Private-Group-Id = 851
}
}
elsif (LDAP-Group == "wlan-kinder") {
update reply {
Tunnel-type = VLAN
Tunnel-medium-type = IEEE-802
Tunnel-Private-Group-Id = 999
}
}
else {
update reply {
Tunnel-type = VLAN
Tunnel-medium-type = IEEE-802
Tunnel-Private-Group-Id = 999
}
}
Unfortunately, the assignment to the VLAN 999 always takes place, the
following can be seen in the debug output:
(8) # Executing section post-auth from file
/etc/freeradius/3.0/sites-enabled/default
(8) post-auth {
(8) update {
(8) No attributes updated
(8) } # update = noop
(8) [ldap] = noop
(8) if (LDAP-Group == "wlan-gast") {
(8) Searching for user in group "wlan-gast"
rlm_ldap (ldap): Reserved connection (2)
(8) Performing unfiltered search in "", scope "sub"
(8) Waiting for search result...
(8) The specified DN wasn't found
(8) Search returned no results
rlm_ldap (ldap): Released connection (2)
(8) if (LDAP-Group == "wlan-gast") -> FALSE
(8) elsif (LDAP-Group == "wlan-kinder") {
(8) Searching for user in group "wlan-kinder"
rlm_ldap (ldap): Reserved connection (3)
(8) Performing unfiltered search in "", scope "sub"
(8) Waiting for search result...
(8) The specified DN wasn't found
(8) Search returned no results
rlm_ldap (ldap): Released connection (3)
(8) elsif (LDAP-Group == "wlan-kinder") -> FALSE
(8) else {
(8) update reply {
(8) Tunnel-type = VLAN
(8) Tunnel-medium-type = IEEE-802
(8) Tunnel-Private-Group-Id = 999
(8) } # update reply = noop
(8) } # else = noop
(8) [exec] = noop
(8) policy remove_reply_message_if_eap {
(8) if (&reply:EAP-Message && &reply:Reply-Message) {
(8) if (&reply:EAP-Message && &reply:Reply-Message) -> FALSE
(8) else {
(8) [noop] = noop
(8) } # else = noop
(8) } # policy remove_reply_message_if_eap = noop
(8) } # post-auth = noop
(8) Login OK: [testgast/<via Auth-Type = eap>] (from client unifi port 0
cli 48-BF-6B-47-56-EC)
(8) Sent Access-Accept Id 156 from 192.168.127.37:1812 to
192.168.127.197:54036 length 0
(8) MS-MPPE-Recv-Key =
0xdb66ce7a4780f479ecba8643b5408656d13b0affd455c45cc0598fb495e3815f
(8) MS-MPPE-Send-Key =
0x02dd275fc9cd169117139666b81da0fb40b3e280174c546b15de84688cb91d91
(8) EAP-Message = 0x03540004
(8) Message-Authenticator = 0x00000000000000000000000000000000
(8) User-Name = "testgast"
(8) Tunnel-Type = VLAN
(8) Tunnel-Medium-Type = IEEE-802
(8) Tunnel-Private-Group-Id = "999"
(8) Finished request
(In the appendix again the complete debug.log)
As you can see, freeradius does not seem to search correctly in LDAP.
Running a mnauelles with ldapsearch (as stated here
https://github.com/FreeRADIUS/freeradius-server/blob/master/raddb/mods-avai…)
comes to the following result:
ldapsearch -D cn=radius-auth,cn=users,DC=home,DC=uhlmann,DC=world -w <<
secret password >> -h pdc.home.uhlmann.world -b
'CN=Users,DC=home,DC=uhlmann,DC=world'
'(&(objectClass=user)(sAMAccountName=testgast)(memberOf=CN=wlan-gast,CN=Users,DC=home,DC=uhlmann,DC=world))'
# extended LDIF
#
# LDAPv3
# base <CN=Users,DC=home,DC=uhlmann,DC=world> with scope subtree
# filter:
(&(objectClass=user)(sAMAccountName=testgast)(memberOf=CN=wlan-gast,CN=Users,DC=home,DC=uhlmann,DC=world))
# requesting: ALL
#
# testgast, Users, home.uhlmann.world
dn: CN=testgast,CN=Users,DC=home,DC=uhlmann,DC=world
objectClass: top
objectClass: person
objectClass: organizationalPerson
objectClass: user
cn: testgast
givenName: testgast
instanceType: 4
whenCreated: 20190216205554.0Z
displayName: testgast
uSNCreated: 13776
name: testgast
objectGUID:: bd40XvQpbkSeX5icQ6HMwQ==
badPwdCount: 0
codePage: 0
countryCode: 0
badPasswordTime: 0
lastLogoff: 0
lastLogon: 0
primaryGroupID: 513
objectSid:: AQUAAAAAAAUVAAAA0HcQPtkCCXK+0rCrrgUAAA==
accountExpires: 9223372036854775807
logonCount: 0
sAMAccountName: testgast
sAMAccountType: 805306368
userPrincipalName: testgast(a)home.uhlmann.world
objectCategory:
CN=Person,CN=Schema,CN=Configuration,DC=home,DC=uhlmann,DC=wor
ld
userAccountControl: 66048
memberOf: CN=wlan-gast,CN=Users,DC=home,DC=uhlmann,DC=world
pwdLastSet: 131971360575227260
lockoutTime: 0
lastLogonTimestamp: 131971360685327730
whenChanged: 20190315150748.0Z
uSNChanged: 14549
distinguishedName: CN=testgast,CN=Users,DC=home,DC=uhlmann,DC=world
# search result
search: 2
result: 0 Success
# numResponses: 2
# numEntries: 1
Can someone tell me if this is what I intend and possibly where my
mistake lies?
Thanks and Regards
Christian
2
4
Hello all,
I don't have a problem needing solving, but I would like context about
FreeRadius. What is happening with the v4 work? What changes and
challenges are being faced? What does the roadmap look like? Is there
going to be a formalization of unlang? What work is currently being done?
--
Please be advised that this email may contain confidential information.
If you are not the intended recipient, please notify us by email by
replying to the sender and delete this message. The sender disclaims that
the content of this email constitutes an offer to enter into, or the
acceptance of, any agreement; provided that the foregoing does not
invalidate the binding effect of any digital or other electronic
reproduction of a manual signature that is included in any attachment.
<https://twitter.com/arroyo_networks>
<https://www.linkedin.com/company/arroyo-networks>
<https://www.github.com/ArroyoNetworks>
10
16
Dear freeradius users
I would like to implement the following attribute of the 3GPP2 dictionary:- "DNS-Server-IP-Address"
It is an attribute which is using subtypes.
Can someone please point me on a "how-to" implement subtypes ?
mit freundlichen Grüssen / Best Regards
Cesare Esposito
Manager Network Engineering
Tel: +492215000254
Mobile: +491635000627
Mail: cesare.esposito(a)inquam-solutions.de<mailto:cesare.esposito@inquam-solutions.de<mailto:cesare.esposito@inquam-solutions.de%3cmailto:cesare.esposito@inquam-solutions.de>>
------------------------------------------------------------------
Inquam Solutions GmbH, Adolf-Grimme-Allee 3, D-50829 Köln,
Geschäftsführer: Carsten Ullrich, Andrzej Cwik Handelsregister: Amtsgericht Köln HRB 33214
----------------------------------------------------------------------------------------------------------------
Disclaimer:
This e-mail message is for the sole use of the intended recipient(s) and may contain privileged or confidential information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please immediately contact the sender by reply e-mail and delete the original message including any attachments and destroy all copies thereof. Thank you for your cooperation.
2
1
Hi list,
i have an old ERX1440 Juniper BRAS. It is working very well with
thousands of pppoe connections. CPU is not burden at all, memory too.
But, from time to time there are large delays in STOP packets (over 20
minutes).
For example (radius detail log):
Wed Mar 20 15:02:56 2019
Acct-Status-Type = Stop
User-Name = "***"
Event-Timestamp = "Mar 20 2019 14:40:09 CET"
Acct-Delay-Time = 0
NAS-Identifier = "ERX1440***"
Acct-Session-Id = "0252606670"
NAS-IP-Address = ****
Service-Type = Framed-User
For this particular event radius is going to use localtime and in
database acctstoptime will be Wed Mar 20 15:02:56 2019.
Is there a way to tell radius to use Event-Timestamp if it exists?
I already tried with attr_rewrite, but acctsoptime wil be recalculated
in sql modul during inserts, right?
Thank you all,
Igor
2
5
HI Team,
I have rried running command radwho/radlast but it gave error (cannot open
/usr/local/var/log/radius/radwtmp: No such file or directory)
When i run with diff path it works.
radwho -F /var/log/freeradius/radwtmp
Login Name What TTY When From Location
I am using freeradius version 3.0.x with mysql.
--
Thanks & Regards
Aditya Vijjan
2
1
Hi,
I'm using freeradius 3.0.13 and I'm using it with openldap. I'm already
mapped the ldap attributes, but unfortunately, I have radiusExpiration
saved in ldap with double quotes and doesn't match the format that accepts.
I have searched in this list and google how to strip first and last char
of radiusExpire variable without result. Anyone knows how to do it?
Error: (669) LDAP_A: WARNING: Failed parsing value "\"02 apr 2019\"" for
attribute Expiration: failed to parse time string ""02 apr 2019""
/etc/raddb/mods-enabled/ldap
...
update {
...
control:Expiration := 'radiusExpiration'
....
}
Thanks.
2
1
Hi.
I am using freeradius 3.0.
I want to send a "Packet of Disconnect" message for all open sessions to force freeradius to close all open radacct records.
Should i send a disconnect message for each user separately or is there way to send one message to close all sessions?
Thanks.
2
2
20 Mar '19
Hello everyone,
I am new to this mailing list.
We have an 'eduroam' freeradius setup with an LDAP backend, including profiles etc from LDAP.
In part thanks to key information found on this list, the setup works and WiFi authentication works. Yeah!
However one thing has been bugging me and I cannot seem to fix it:
* during the whole EAP/PEAP negotiation, radiusd performs the exact same LDAP calls twice.
This occurs in step 7 and step 8 of the negotiation process, as can be seen in the debug output below: rlm_ldap performs the exact same lookups and searches in both steps.
How can I prevent this from happening? The LDAP servers are fast, but this means an unnecessary doubling of the load radiusd places on them, and we have many hundreds of thousands of authentications per day.
Thanks, regards,
Mark van Reijn
Debug output:
FreeRADIUS Version 3.0.15
Copyright (C) 1999-2017 The FreeRADIUS server project and contributors
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE
You may redistribute copies of FreeRADIUS under the terms of the
GNU General Public License
For more information about these matters, see the file named COPYRIGHT
Starting - reading configuration files ...
including dictionary file /usr/share/freeradius/dictionary
including dictionary file /usr/share/freeradius/dictionary.dhcp
including dictionary file /usr/share/freeradius/dictionary.vqp
including dictionary file /etc/raddb/dictionary
including configuration file /etc/raddb/radiusd.conf
including configuration file /etc/raddb/eduroam-proxy.conf
including configuration file /etc/raddb/clients.conf
including files in directory /etc/raddb/mods-enabled/
including configuration file /etc/raddb/mods-enabled/nivo-eap-inner
including configuration file /etc/raddb/mods-enabled/expiration
including configuration file /etc/raddb/mods-enabled/radutmp
including configuration file /etc/raddb/mods-enabled/cache
including configuration file /etc/raddb/mods-enabled/preprocess
including configuration file /etc/raddb/mods-enabled/detail
including configuration file /etc/raddb/mods-enabled/attr_filter
including configuration file /etc/raddb/mods-enabled/expr
including configuration file /etc/raddb/mods-enabled/sradutmp
including configuration file /etc/raddb/mods-enabled/echo
including configuration file /etc/raddb/mods-enabled/nivo-linelog
including configuration file /etc/raddb/mods-enabled/mschap
including configuration file /etc/raddb/mods-enabled/replicate
including configuration file /etc/raddb/mods-enabled/unpack
including configuration file /etc/raddb/mods-enabled/logintime
including configuration file /etc/raddb/mods-enabled/exec
including configuration file /etc/raddb/mods-enabled/nivo-eap
including configuration file /etc/raddb/mods-enabled/always
including configuration file /etc/raddb/mods-enabled/chap
including configuration file /etc/raddb/mods-enabled/utf8
including configuration file /etc/raddb/mods-enabled/cache_eap
including configuration file /etc/raddb/mods-enabled/pap
including configuration file /etc/raddb/mods-enabled/dynamic_clients
including configuration file /etc/raddb/mods-enabled/nivo-ldap
including configuration file /etc/raddb/mods-enabled/dhcp
including configuration file /etc/raddb/mods-enabled/realm
including configuration file /etc/raddb/mods-enabled/linelog
including configuration file /etc/raddb/mods-enabled/soh
including configuration file /etc/raddb/mods-enabled/date
including configuration file /etc/raddb/mods-enabled/detail.log
including configuration file /etc/raddb/mods-enabled/digest
including files in directory /etc/raddb/policy.d/
including configuration file /etc/raddb/policy.d/operator-name
including configuration file /etc/raddb/policy.d/accounting
including configuration file /etc/raddb/policy.d/debug
including configuration file /etc/raddb/policy.d/filter
including configuration file /etc/raddb/policy.d/canonicalization
including configuration file /etc/raddb/policy.d/moonshot-targeted-ids
including configuration file /etc/raddb/policy.d/control
including configuration file /etc/raddb/policy.d/cui
including configuration file /etc/raddb/policy.d/eap
including configuration file /etc/raddb/policy.d/abfab-tr
including configuration file /etc/raddb/policy.d/dhcp
including files in directory /etc/raddb/sites-enabled/
including configuration file /etc/raddb/sites-enabled/nivo-eduroam-inner
including configuration file /etc/raddb/sites-enabled/nivo-eduroam
main {
security {
allow_core_dumps = no
}
name = "radiusd"
prefix = "/usr"
localstatedir = "/var"
logdir = "/var/log/radius"
run_dir = "/var/run/radiusd"
}
main {
name = "radiusd"
prefix = "/usr"
localstatedir = "/var"
sbindir = "/usr/sbin"
logdir = "/var/log/radius"
run_dir = "/var/run/radiusd"
libdir = "/usr/lib64/freeradius"
radacctdir = "/var/log/radius/radacct"
hostname_lookups = no
max_request_time = 30
cleanup_delay = 5
max_requests = 16384
pidfile = "/var/run/radiusd/radiusd.pid"
checkrad = "/usr/sbin/checkrad"
debug_level = 0
proxy_requests = yes
log {
stripped_names = no
auth = no
auth_badpass = no
auth_goodpass = no
colourise = yes
msg_denied = "You are already logged in - access denied"
}
resources {
}
security {
max_attributes = 200
reject_delay = 1.000000
status_server = yes
}
}
radiusd: #### Loading Realms and Home Servers ####
home_server eduroam_flr_server_1 {
ipaddr = radius1.eduroam.kennisnet.nl IPv4 address [145.97.36.58]
port = 0
secret = <<< secret >>>
response_window = 30.000000
response_timeouts = 1
max_outstanding = 65536
zombie_period = 40
status_check = "status-server"
ping_interval = 30
check_timeout = 4
num_answers_to_alive = 3
revive_interval = 300
limit {
max_connections = 16
max_requests = 0
lifetime = 0
idle_timeout = 0
}
coa {
irt = 2
mrt = 16
mrc = 5
mrd = 30
}
}
home_server eduroam_flr_server_2 {
ipaddr = radius2.eduroam.kennisnet.nl IPv4 address [145.97.36.59]
port = 0
secret = <<< secret >>>
response_window = 30.000000
response_timeouts = 1
max_outstanding = 65536
zombie_period = 40
status_check = "status-server"
ping_interval = 30
check_timeout = 4
num_answers_to_alive = 3
revive_interval = 300
limit {
max_connections = 16
max_requests = 0
lifetime = 0
idle_timeout = 0
}
coa {
irt = 2
mrt = 16
mrc = 5
mrd = 30
}
}
home_server_pool eduroam_flr_pool {
type = keyed-balance
home_server = eduroam_flr_server_1
home_server = eduroam_flr_server_2
}
realm eduroam_flr {
auth_pool = eduroam_flr_pool
nostrip
}
radiusd: #### Loading Clients ####
Debugger not attached
# Creating Auth-Type = inner-eap
# Creating Auth-Type = mschap
# Creating Auth-Type = pap
# Creating Auth-Type = eap
radiusd: #### Instantiating modules ####
modules {
# Loaded module rlm_eap
# Loading module "inner-eap" from file /etc/raddb/mods-enabled/nivo-eap-inner
eap inner-eap {
default_eap_type = "mschapv2"
timer_expire = 60
ignore_unknown_eap_types = no
cisco_accounting_username_bug = no
max_sessions = 16384
}
# Loaded module rlm_expiration
# Loading module "expiration" from file /etc/raddb/mods-enabled/expiration
# Loaded module rlm_radutmp
# Loading module "radutmp" from file /etc/raddb/mods-enabled/radutmp
radutmp {
filename = "/var/log/radius/radutmp"
username = "%{User-Name}"
case_sensitive = yes
check_with_nas = yes
permissions = 384
caller_id = yes
}
# Loaded module rlm_cache
# Loading module "cache" from file /etc/raddb/mods-enabled/cache
cache {
driver = "rlm_cache_rbtree"
key = "%{User-Name}"
ttl = 10
max_entries = 0
epoch = 0
add_stats = no
}
# Loaded module rlm_preprocess
# Loading module "preprocess" from file /etc/raddb/mods-enabled/preprocess
preprocess {
huntgroups = "/etc/raddb/mods-config/preprocess/huntgroups"
hints = "/etc/raddb/mods-config/preprocess/hints"
with_ascend_hack = no
ascend_channels_per_line = 23
with_ntdomain_hack = no
with_specialix_jetstream_hack = no
with_cisco_vsa_hack = no
with_alvarion_vsa_hack = no
}
# Loaded module rlm_detail
# Loading module "detail" from file /etc/raddb/mods-enabled/detail
detail {
filename = "/var/log/radius/radacct/%{%{Packet-Src-IP-Address}:-%{Packet-Src-IPv6-Address}}/detail-%Y%m%d"
header = "%t"
permissions = 384
locking = no
escape_filenames = no
log_packet_header = no
}
# Loaded module rlm_attr_filter
# Loading module "attr_filter.post-proxy" from file /etc/raddb/mods-enabled/attr_filter
attr_filter attr_filter.post-proxy {
filename = "/etc/raddb/mods-config/attr_filter/post-proxy"
key = "%{Realm}"
relaxed = no
}
# Loading module "attr_filter.pre-proxy" from file /etc/raddb/mods-enabled/attr_filter
attr_filter attr_filter.pre-proxy {
filename = "/etc/raddb/mods-config/attr_filter/pre-proxy"
key = "%{Realm}"
relaxed = no
}
# Loading module "attr_filter.access_reject" from file /etc/raddb/mods-enabled/attr_filter
attr_filter attr_filter.access_reject {
filename = "/etc/raddb/mods-config/attr_filter/access_reject"
key = "%{User-Name}"
relaxed = no
}
# Loading module "attr_filter.access_challenge" from file /etc/raddb/mods-enabled/attr_filter
attr_filter attr_filter.access_challenge {
filename = "/etc/raddb/mods-config/attr_filter/access_challenge"
key = "%{User-Name}"
relaxed = no
}
# Loading module "attr_filter.accounting_response" from file /etc/raddb/mods-enabled/attr_filter
attr_filter attr_filter.accounting_response {
filename = "/etc/raddb/mods-config/attr_filter/accounting_response"
key = "%{User-Name}"
relaxed = no
}
# Loaded module rlm_expr
# Loading module "expr" from file /etc/raddb/mods-enabled/expr
expr {
safe_characters = "@abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_: /äéöüàâæçèéêëîïôœùûüaÿÄÉÖÜßÀÂÆÇÈÉÊËÎÏÔŒÙÛÜŸ"
}
# Loading module "sradutmp" from file /etc/raddb/mods-enabled/sradutmp
radutmp sradutmp {
filename = "/var/log/radius/sradutmp"
username = "%{User-Name}"
case_sensitive = yes
check_with_nas = yes
permissions = 420
caller_id = no
}
# Loaded module rlm_exec
# Loading module "echo" from file /etc/raddb/mods-enabled/echo
exec echo {
wait = yes
program = "/bin/echo %{User-Name}"
input_pairs = "request"
output_pairs = "reply"
shell_escape = yes
}
# Loaded module rlm_linelog
# Loading module "linelog_recv_request" from file /etc/raddb/mods-enabled/nivo-linelog
linelog linelog_recv_request {
filename = "syslog"
escape_filenames = no
syslog_facility = "local0"
syslog_severity = "debug"
permissions = 384
format = "action = Recv-Request, %{pairs:request:}"
}
# Loading module "linelog_send_accept" from file /etc/raddb/mods-enabled/nivo-linelog
linelog linelog_send_accept {
filename = "syslog"
escape_filenames = no
syslog_facility = "local0"
syslog_severity = "debug"
permissions = 384
format = "action = Send-Accept, %{pairs:reply:}"
}
# Loading module "linelog_send_reject" from file /etc/raddb/mods-enabled/nivo-linelog
linelog linelog_send_reject {
filename = "syslog"
escape_filenames = no
syslog_facility = "local0"
syslog_severity = "debug"
permissions = 384
format = "action = Send-Reject, %{pairs:request:}"
}
# Loading module "linelog_send_proxy_request" from file /etc/raddb/mods-enabled/nivo-linelog
linelog linelog_send_proxy_request {
filename = "syslog"
escape_filenames = no
syslog_facility = "local0"
syslog_severity = "debug"
permissions = 384
format = "action = Send-Proxy-Request, %{pairs:proxy-request:}"
}
# Loading module "linelog_recv_proxy_response" from file /etc/raddb/mods-enabled/nivo-linelog
linelog linelog_recv_proxy_response {
filename = "syslog"
escape_filenames = no
syslog_facility = "local0"
syslog_severity = "debug"
permissions = 384
format = "action = Recv-Proxy-Response, %{pairs:proxy-reply:}"
}
# Loaded module rlm_mschap
# Loading module "mschap" from file /etc/raddb/mods-enabled/mschap
mschap {
use_mppe = yes
require_encryption = no
require_strong = no
with_ntdomain_hack = yes
passchange {
}
allow_retry = yes
winbind_retry_with_normalised_username = no
}
# Loaded module rlm_replicate
# Loading module "replicate" from file /etc/raddb/mods-enabled/replicate
# Loaded module rlm_unpack
# Loading module "unpack" from file /etc/raddb/mods-enabled/unpack
# Loaded module rlm_logintime
# Loading module "logintime" from file /etc/raddb/mods-enabled/logintime
logintime {
minimum_timeout = 60
}
# Loading module "exec" from file /etc/raddb/mods-enabled/exec
exec {
wait = no
input_pairs = "request"
shell_escape = yes
timeout = 10
}
# Loading module "eap" from file /etc/raddb/mods-enabled/nivo-eap
eap {
default_eap_type = "peap"
timer_expire = 60
ignore_unknown_eap_types = no
cisco_accounting_username_bug = no
max_sessions = 16384
}
# Loaded module rlm_always
# Loading module "reject" from file /etc/raddb/mods-enabled/always
always reject {
rcode = "reject"
simulcount = 0
mpp = no
}
# Loading module "fail" from file /etc/raddb/mods-enabled/always
always fail {
rcode = "fail"
simulcount = 0
mpp = no
}
# Loading module "ok" from file /etc/raddb/mods-enabled/always
always ok {
rcode = "ok"
simulcount = 0
mpp = no
}
# Loading module "handled" from file /etc/raddb/mods-enabled/always
always handled {
rcode = "handled"
simulcount = 0
mpp = no
}
# Loading module "invalid" from file /etc/raddb/mods-enabled/always
always invalid {
rcode = "invalid"
simulcount = 0
mpp = no
}
# Loading module "userlock" from file /etc/raddb/mods-enabled/always
always userlock {
rcode = "userlock"
simulcount = 0
mpp = no
}
# Loading module "notfound" from file /etc/raddb/mods-enabled/always
always notfound {
rcode = "notfound"
simulcount = 0
mpp = no
}
# Loading module "noop" from file /etc/raddb/mods-enabled/always
always noop {
rcode = "noop"
simulcount = 0
mpp = no
}
# Loading module "updated" from file /etc/raddb/mods-enabled/always
always updated {
rcode = "updated"
simulcount = 0
mpp = no
}
# Loaded module rlm_chap
# Loading module "chap" from file /etc/raddb/mods-enabled/chap
# Loaded module rlm_utf8
# Loading module "utf8" from file /etc/raddb/mods-enabled/utf8
# Loading module "cache_eap" from file /etc/raddb/mods-enabled/cache_eap
cache cache_eap {
driver = "rlm_cache_rbtree"
key = "%{%{control:State}:-%{%{reply:State}:-%{State}}}"
ttl = 15
max_entries = 0
epoch = 0
add_stats = no
}
# Loaded module rlm_pap
# Loading module "pap" from file /etc/raddb/mods-enabled/pap
pap {
normalise = yes
}
# Loaded module rlm_dynamic_clients
# Loading module "dynamic_clients" from file /etc/raddb/mods-enabled/dynamic_clients
# Loaded module rlm_ldap
# Loading module "ldap" from file /etc/raddb/mods-enabled/nivo-ldap
ldap {
server = "localhost"
port = 389
identity = "cn=sa-radius,ou=accounts,o=services"
password = <<< secret >>>
sasl {
}
valuepair_attribute = "nivoRadiusAttribute"
edir = yes
edir_autz = yes
read_clients = yes
user {
scope = "sub"
access_attribute = "nivoRadiusNoAccess"
access_positive = no
sasl {
}
}
group {
filter = "(objectClass=nivoGroup)"
scope = "one"
name_attribute = "cn"
membership_attribute = "groupMembership"
membership_filter = "(member=%{control:Ldap-UserDn})"
cacheable_name = no
cacheable_dn = no
}
client {
filter = "(objectClass=nivoRadiusClient)"
scope = "one"
base_dn = "ou=clients,ou=radius,o=config"
}
profile {
attribute = "nivoRadiusProfileDn"
}
options {
ldap_debug = 40
chase_referrals = yes
rebind = no
net_timeout = 1
res_timeout = 10
srv_timelimit = 3
idle = 60
probes = 3
interval = 3
}
tls {
start_tls = yes
require_cert = "never"
}
}
Creating attribute LDAP-Group
# Loaded module rlm_dhcp
# Loading module "dhcp" from file /etc/raddb/mods-enabled/dhcp
# Loaded module rlm_realm
# Loading module "IPASS" from file /etc/raddb/mods-enabled/realm
realm IPASS {
format = "prefix"
delimiter = "/"
ignore_default = no
ignore_null = no
}
# Loading module "suffix" from file /etc/raddb/mods-enabled/realm
realm suffix {
format = "suffix"
delimiter = "@"
ignore_default = no
ignore_null = no
}
# Loading module "realmpercent" from file /etc/raddb/mods-enabled/realm
realm realmpercent {
format = "suffix"
delimiter = "%"
ignore_default = no
ignore_null = no
}
# Loading module "ntdomain" from file /etc/raddb/mods-enabled/realm
realm ntdomain {
format = "prefix"
delimiter = "\\"
ignore_default = no
ignore_null = no
}
# Loading module "linelog" from file /etc/raddb/mods-enabled/linelog
linelog {
filename = "/var/log/radius/linelog"
escape_filenames = no
syslog_severity = "info"
permissions = 384
format = "This is a log message for %{User-Name}"
reference = "messages.%{%{reply:Packet-Type}:-default}"
}
# Loading module "log_accounting" from file /etc/raddb/mods-enabled/linelog
linelog log_accounting {
filename = "/var/log/radius/linelog-accounting"
escape_filenames = no
syslog_severity = "info"
permissions = 384
format = ""
reference = "Accounting-Request.%{%{Acct-Status-Type}:-unknown}"
}
# Loaded module rlm_soh
# Loading module "soh" from file /etc/raddb/mods-enabled/soh
soh {
dhcp = yes
}
# Loaded module rlm_date
# Loading module "date" from file /etc/raddb/mods-enabled/date
date {
format = "%b %e %Y %H:%M:%S %Z"
utc = no
}
# Loading module "auth_log" from file /etc/raddb/mods-enabled/detail.log
detail auth_log {
filename = "/var/log/radius/radacct/%{%{Packet-Src-IP-Address}:-%{Packet-Src-IPv6-Address}}/auth-detail-%Y%m%d"
header = "%t"
permissions = 384
locking = no
escape_filenames = no
log_packet_header = no
}
# Loading module "reply_log" from file /etc/raddb/mods-enabled/detail.log
detail reply_log {
filename = "/var/log/radius/radacct/%{%{Packet-Src-IP-Address}:-%{Packet-Src-IPv6-Address}}/reply-detail-%Y%m%d"
header = "%t"
permissions = 384
locking = no
escape_filenames = no
log_packet_header = no
}
# Loading module "pre_proxy_log" from file /etc/raddb/mods-enabled/detail.log
detail pre_proxy_log {
filename = "/var/log/radius/radacct/%{%{Packet-Src-IP-Address}:-%{Packet-Src-IPv6-Address}}/pre-proxy-detail-%Y%m%d"
header = "%t"
permissions = 384
locking = no
escape_filenames = no
log_packet_header = no
}
# Loading module "post_proxy_log" from file /etc/raddb/mods-enabled/detail.log
detail post_proxy_log {
filename = "/var/log/radius/radacct/%{%{Packet-Src-IP-Address}:-%{Packet-Src-IPv6-Address}}/post-proxy-detail-%Y%m%d"
header = "%t"
permissions = 384
locking = no
escape_filenames = no
log_packet_header = no
}
# Loaded module rlm_digest
# Loading module "digest" from file /etc/raddb/mods-enabled/digest
instantiate {
}
# Instantiating module "inner-eap" from file /etc/raddb/mods-enabled/nivo-eap-inner
# Linked to sub-module rlm_eap_mschapv2
mschapv2 {
with_ntdomain_hack = no
send_error = yes
}
# Instantiating module "expiration" from file /etc/raddb/mods-enabled/expiration
# Instantiating module "cache" from file /etc/raddb/mods-enabled/cache
rlm_cache (cache): Driver rlm_cache_rbtree (module rlm_cache_rbtree) loaded and linked
# Instantiating module "preprocess" from file /etc/raddb/mods-enabled/preprocess
reading pairlist file /etc/raddb/mods-config/preprocess/huntgroups
reading pairlist file /etc/raddb/mods-config/preprocess/hints
# Instantiating module "detail" from file /etc/raddb/mods-enabled/detail
# Instantiating module "attr_filter.post-proxy" from file /etc/raddb/mods-enabled/attr_filter
reading pairlist file /etc/raddb/mods-config/attr_filter/post-proxy
# Instantiating module "attr_filter.pre-proxy" from file /etc/raddb/mods-enabled/attr_filter
reading pairlist file /etc/raddb/mods-config/attr_filter/pre-proxy
# Instantiating module "attr_filter.access_reject" from file /etc/raddb/mods-enabled/attr_filter
reading pairlist file /etc/raddb/mods-config/attr_filter/access_reject
[/etc/raddb/mods-config/attr_filter/access_reject]:11 Check item "FreeRADIUS-Response-Delay" found in filter list for realm "DEFAULT".
[/etc/raddb/mods-config/attr_filter/access_reject]:11 Check item "FreeRADIUS-Response-Delay-USec" found in filter list for realm "DEFAULT".
# Instantiating module "attr_filter.access_challenge" from file /etc/raddb/mods-enabled/attr_filter
reading pairlist file /etc/raddb/mods-config/attr_filter/access_challenge
# Instantiating module "attr_filter.accounting_response" from file /etc/raddb/mods-enabled/attr_filter
reading pairlist file /etc/raddb/mods-config/attr_filter/accounting_response
# Instantiating module "linelog_recv_request" from file /etc/raddb/mods-enabled/nivo-linelog
# Instantiating module "linelog_send_accept" from file /etc/raddb/mods-enabled/nivo-linelog
# Instantiating module "linelog_send_reject" from file /etc/raddb/mods-enabled/nivo-linelog
# Instantiating module "linelog_send_proxy_request" from file /etc/raddb/mods-enabled/nivo-linelog
# Instantiating module "linelog_recv_proxy_response" from file /etc/raddb/mods-enabled/nivo-linelog
# Instantiating module "mschap" from file /etc/raddb/mods-enabled/mschap
rlm_mschap (mschap): using internal authentication
# Instantiating module "logintime" from file /etc/raddb/mods-enabled/logintime
# Instantiating module "eap" from file /etc/raddb/mods-enabled/nivo-eap
# Linked to sub-module rlm_eap_ttls
ttls {
tls = "tls-common"
default_eap_type = "mschapv2"
copy_request_to_tunnel = yes
use_tunneled_reply = no
virtual_server = "eduroam-inner"
include_length = yes
require_client_cert = no
}
tls-config tls-common {
verify_depth = 0
pem_file_type = yes
private_key_file = "/etc/raddb/certs/server.key"
certificate_file = "/etc/raddb/certs/server.pem"
ca_file = "/etc/raddb/certs/ca.pem"
private_key_password = <<< secret >>>
fragment_size = 1024
include_length = yes
auto_chain = yes
check_crl = no
check_all_crl = no
ecdh_curve = "prime256v1"
cache {
enable = yes
lifetime = 8
name = "nivo-cache"
max_entries = 0
persist_dir = "/var/log/radius/tlscache"
}
verify {
skip_if_ocsp_ok = no
}
ocsp {
enable = yes
override_cert_url = no
use_nonce = yes
timeout = 0
softfail = no
}
}
# Linked to sub-module rlm_eap_peap
peap {
tls = "tls-common"
default_eap_type = "mschapv2"
copy_request_to_tunnel = yes
use_tunneled_reply = no
proxy_tunneled_request_as_eap = yes
virtual_server = "eduroam-inner"
soh = no
require_client_cert = no
}
tls: Using cached TLS configuration from previous invocation
# Instantiating module "reject" from file /etc/raddb/mods-enabled/always
# Instantiating module "fail" from file /etc/raddb/mods-enabled/always
# Instantiating module "ok" from file /etc/raddb/mods-enabled/always
# Instantiating module "handled" from file /etc/raddb/mods-enabled/always
# Instantiating module "invalid" from file /etc/raddb/mods-enabled/always
# Instantiating module "userlock" from file /etc/raddb/mods-enabled/always
# Instantiating module "notfound" from file /etc/raddb/mods-enabled/always
# Instantiating module "noop" from file /etc/raddb/mods-enabled/always
# Instantiating module "updated" from file /etc/raddb/mods-enabled/always
# Instantiating module "cache_eap" from file /etc/raddb/mods-enabled/cache_eap
rlm_cache (cache_eap): Driver rlm_cache_rbtree (module rlm_cache_rbtree) loaded and linked
# Instantiating module "pap" from file /etc/raddb/mods-enabled/pap
# Instantiating module "ldap" from file /etc/raddb/mods-enabled/nivo-ldap
rlm_ldap: libldap vendor: OpenLDAP, version: 20441
accounting {
reference = "%{tolower:type.%{Acct-Status-Type}}"
}
post-auth {
reference = "."
}
rlm_ldap (ldap): Initialising connection pool
pool {
start = 5
min = 3
max = 32
spare = 10
uses = 0
lifetime = 0
cleanup_interval = 30
idle_timeout = 60
retry_delay = 30
spread = no
}
rlm_ldap (ldap): Opening additional connection (0), 1 of 32 pending slots used
rlm_ldap (ldap): Connecting to ldap://localhost:389
TLS certificate verification: Error, self signed certificate in certificate chain
rlm_ldap (ldap): Waiting for bind result...
rlm_ldap (ldap): Bind successful
rlm_ldap (ldap): Opening additional connection (1), 1 of 31 pending slots used
rlm_ldap (ldap): Connecting to ldap://localhost:389
TLS certificate verification: Error, self signed certificate in certificate chain
rlm_ldap (ldap): Waiting for bind result...
rlm_ldap (ldap): Bind successful
rlm_ldap (ldap): Opening additional connection (2), 1 of 30 pending slots used
rlm_ldap (ldap): Connecting to ldap://localhost:389
TLS certificate verification: Error, self signed certificate in certificate chain
rlm_ldap (ldap): Waiting for bind result...
rlm_ldap (ldap): Bind successful
rlm_ldap (ldap): Opening additional connection (3), 1 of 29 pending slots used
rlm_ldap (ldap): Connecting to ldap://localhost:389
TLS certificate verification: Error, self signed certificate in certificate chain
rlm_ldap (ldap): Waiting for bind result...
rlm_ldap (ldap): Bind successful
rlm_ldap (ldap): Opening additional connection (4), 1 of 28 pending slots used
rlm_ldap (ldap): Connecting to ldap://localhost:389
TLS certificate verification: Error, self signed certificate in certificate chain
rlm_ldap (ldap): Waiting for bind result...
rlm_ldap (ldap): Bind successful
rlm_ldap (ldap): Loading dynamic clients
rlm_ldap (ldap): Reserved connection (0)
rlm_ldap (ldap): Performing search in "ou=clients,ou=radius,o=config" with filter "(objectClass=nivoRadiusClient)", scope "one"
rlm_ldap (ldap): Waiting for search result...
client cn=localhost,ou=clients,ou=radius,o=config {
ipaddr = 127.0.0.1
require_message_authenticator = no
secret = <<< secret >>>
shortname = "nivo"
nas_type = "other"
limit {
max_connections = 16
lifetime = 0
idle_timeout = 30
}
}
rlm_ldap (ldap): Client "cn=localhost,ou=clients,ou=radius,o=config" added
client cn=obelix,ou=clients,ou=radius,o=config {
ipaddr = 172.16.48.123
require_message_authenticator = no
secret = <<< secret >>>
shortname = "obelix"
nas_type = "obelix"
limit {
max_connections = 16
lifetime = 0
idle_timeout = 30
}
}
rlm_ldap (ldap): Client "cn=obelix,ou=clients,ou=radius,o=config" added
client cn=nivo-school,ou=clients,ou=radius,o=config {
ipaddr = 172.16.48.115
require_message_authenticator = no
secret = <<< secret >>>
shortname = "josef"
nas_type = "other"
limit {
max_connections = 16
lifetime = 0
idle_timeout = 30
}
}
rlm_ldap (ldap): Client "cn=nivo-school,ou=clients,ou=radius,o=config" added
rlm_ldap (ldap): Released connection (0)
Need 5 more connections to reach 10 spares
rlm_ldap (ldap): Opening additional connection (5), 1 of 27 pending slots used
rlm_ldap (ldap): Connecting to ldap://localhost:389
TLS certificate verification: Error, self signed certificate in certificate chain
rlm_ldap (ldap): Waiting for bind result...
rlm_ldap (ldap): Bind successful
# Instantiating module "IPASS" from file /etc/raddb/mods-enabled/realm
# Instantiating module "suffix" from file /etc/raddb/mods-enabled/realm
# Instantiating module "realmpercent" from file /etc/raddb/mods-enabled/realm
# Instantiating module "ntdomain" from file /etc/raddb/mods-enabled/realm
# Instantiating module "linelog" from file /etc/raddb/mods-enabled/linelog
# Instantiating module "log_accounting" from file /etc/raddb/mods-enabled/linelog
# Instantiating module "auth_log" from file /etc/raddb/mods-enabled/detail.log
rlm_detail (auth_log): 'User-Password' suppressed, will not appear in detail output
# Instantiating module "reply_log" from file /etc/raddb/mods-enabled/detail.log
# Instantiating module "pre_proxy_log" from file /etc/raddb/mods-enabled/detail.log
# Instantiating module "post_proxy_log" from file /etc/raddb/mods-enabled/detail.log
} # modules
radiusd: #### Loading Virtual Servers ####
server { # from file /etc/raddb/radiusd.conf
} # server
server eduroam-inner { # from file /etc/raddb/sites-enabled/nivo-eduroam-inner
# Loading authenticate {...}
# Loading authorize {...}
# Loading post-auth {...}
} # server eduroam-inner
server eduroam { # from file /etc/raddb/sites-enabled/nivo-eduroam
# Loading authenticate {...}
# Loading authorize {...}
# Loading pre-proxy {...}
# Loading post-proxy {...}
# Loading post-auth {...}
} # server eduroam
radiusd: #### Opening IP addresses and Ports ####
listen {
type = "auth"
ipaddr = *
port = 18120
}
listen {
type = "auth"
ipaddr = *
port = 1812
}
Listening on auth address * port 18120 bound to server eduroam-inner
Listening on auth address * port 1812 bound to server eduroam
Listening on proxy address * port 44873
Ready to process requests
(0) Received Access-Request Id 0 from 127.0.0.1:45195 to 127.0.0.1:1812 length 148
(0) User-Name = "anonymous(a)nivo.im"
(0) NAS-IP-Address = 127.0.0.1
(0) Calling-Station-Id = "02-00-00-00-00-01"
(0) Framed-MTU = 1400
(0) NAS-Port-Type = Wireless-802.11
(0) Service-Type = Framed-User
(0) Connect-Info = "CONNECT 11Mbps 802.11b"
(0) EAP-Message = 0x0200001601616e6f6e796d6f7573406e69766f2e696d
(0) Message-Authenticator = 0x598a0aeeccecf47c0123369b319270f8
(0) # Executing section authorize from file /etc/raddb/sites-enabled/nivo-eduroam
(0) authorize {
(0) policy split_username_nai {
(0) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(0) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) -> TRUE
(0) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(0) update request {
(0) EXPAND %{1}
(0) --> anonymous
(0) &Stripped-User-Name := anonymous
(0) EXPAND %{3}
(0) --> nivo.im
(0) &Stripped-User-Domain = nivo.im
(0) } # update request = noop
(0) [updated] = updated
(0) } # if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) = updated
(0) ... skipping else: Preceding "if" was taken
(0) } # policy split_username_nai = updated
(0) if (noop || !&Stripped-User-Domain) {
(0) if (noop || !&Stripped-User-Domain) -> FALSE
(0) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) {
(0) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) -> FALSE
(0) eap: Peer sent EAP Response (code 2) ID 0 length 22
(0) eap: EAP-Identity reply, returning 'ok' so we can short-circuit the rest of authorize
(0) [eap] = ok
(0) } # authorize = ok
(0) Found Auth-Type = eap
(0) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(0) authenticate {
(0) eap: Peer sent packet with method EAP Identity (1)
(0) eap: Calling submodule eap_peap to process data
(0) eap_peap: Initiating new EAP-TLS session
(0) eap_peap: Flushing SSL sessions (of #0)
(0) eap_peap: [eaptls start] = request
(0) eap: Sending EAP Request (code 1) ID 1 length 6
(0) eap: EAP session adding &reply:State = 0x83a5a6c583a4bf32
(0) [eap] = handled
(0) } # authenticate = handled
(0) Using Post-Auth-Type Challenge
(0) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(0) Post-Auth-Type Challenge {
(0) if (&reply:Cached-Session-Policy && &reply:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) {
(0) if (&reply:Cached-Session-Policy && &reply:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) -> FALSE
(0) } # Post-Auth-Type Challenge = noop
(0) Sent Access-Challenge Id 0 from 127.0.0.1:1812 to 127.0.0.1:45195 length 0
(0) EAP-Message = 0x010100061920
(0) Message-Authenticator = 0x00000000000000000000000000000000
(0) State = 0x83a5a6c583a4bf3297f8fb882007e6d8
(0) Finished request
Waking up in 4.9 seconds.
(1) Received Access-Request Id 1 from 127.0.0.1:45195 to 127.0.0.1:1812 length 445
(1) User-Name = "anonymous(a)nivo.im"
(1) NAS-IP-Address = 127.0.0.1
(1) Calling-Station-Id = "02-00-00-00-00-01"
(1) Framed-MTU = 1400
(1) NAS-Port-Type = Wireless-802.11
(1) Service-Type = Framed-User
(1) Connect-Info = "CONNECT 11Mbps 802.11b"
(1) EAP-Message = 0x0201012b198000000121160301011c010001180303ce8317d9ecb7a6bf3c59be1461cc65455c708fd520665680cbccbdec4085cbcf0000aac030c02cc028c024c014c00a00a500a300a1009f006b006a0069006800390038003700360088008700860085c032c02ec02ac026c00fc005009d003d003500
(1) State = 0x83a5a6c583a4bf3297f8fb882007e6d8
(1) Message-Authenticator = 0x7ae8869203bff2c67be3913f8a582d4c
(1) session-state: No cached attributes
(1) # Executing section authorize from file /etc/raddb/sites-enabled/nivo-eduroam
(1) authorize {
(1) policy split_username_nai {
(1) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(1) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) -> TRUE
(1) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(1) update request {
(1) EXPAND %{1}
(1) --> anonymous
(1) &Stripped-User-Name := anonymous
(1) EXPAND %{3}
(1) --> nivo.im
(1) &Stripped-User-Domain = nivo.im
(1) } # update request = noop
(1) [updated] = updated
(1) } # if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) = updated
(1) ... skipping else: Preceding "if" was taken
(1) } # policy split_username_nai = updated
(1) if (noop || !&Stripped-User-Domain) {
(1) if (noop || !&Stripped-User-Domain) -> FALSE
(1) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) {
(1) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) -> FALSE
(1) eap: Peer sent EAP Response (code 2) ID 1 length 299
(1) eap: Continuing tunnel setup
(1) [eap] = ok
(1) } # authorize = ok
(1) Found Auth-Type = eap
(1) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(1) authenticate {
(1) eap: Expiring EAP session with state 0x83a5a6c583a4bf32
(1) eap: Finished EAP session with state 0x83a5a6c583a4bf32
(1) eap: Previous EAP request found for state 0x83a5a6c583a4bf32, released from the list
(1) eap: Peer sent packet with method EAP PEAP (25)
(1) eap: Calling submodule eap_peap to process data
(1) eap_peap: Continuing EAP-TLS
(1) eap_peap: Peer indicated complete TLS record size will be 289 bytes
(1) eap_peap: Got complete TLS record (289 bytes)
(1) eap_peap: [eaptls verify] = length included
(1) eap_peap: (other): before/accept initialization
(1) eap_peap: TLS_accept: before/accept initialization
(1) eap_peap: <<< recv TLS 1.2 [length 011c]
(1) eap_peap: TLS_accept: unknown state
(1) eap_peap: >>> send TLS 1.2 [length 005e]
(1) eap_peap: TLS_accept: unknown state
(1) eap_peap: >>> send TLS 1.2 [length 08d3]
(1) eap_peap: TLS_accept: unknown state
(1) eap_peap: >>> send TLS 1.2 [length 014d]
(1) eap_peap: TLS_accept: unknown state
(1) eap_peap: >>> send TLS 1.2 [length 0004]
(1) eap_peap: TLS_accept: unknown state
(1) eap_peap: TLS_accept: unknown state
(1) eap_peap: TLS_accept: unknown state
(1) eap_peap: TLS_accept: Need to read more data: unknown state
(1) eap_peap: TLS_accept: Need to read more data: unknown state
(1) eap_peap: In SSL Handshake Phase
(1) eap_peap: In SSL Accept mode
(1) eap_peap: [eaptls process] = handled
(1) eap: Sending EAP Request (code 1) ID 2 length 1014
(1) eap: EAP session adding &reply:State = 0x83a5a6c582a7bf32
(1) [eap] = handled
(1) } # authenticate = handled
(1) Using Post-Auth-Type Challenge
(1) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(1) Post-Auth-Type Challenge {
(1) if (&reply:Cached-Session-Policy && &reply:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) {
(1) if (&reply:Cached-Session-Policy && &reply:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) -> FALSE
(1) } # Post-Auth-Type Challenge = noop
(1) Sent Access-Challenge Id 1 from 127.0.0.1:1812 to 127.0.0.1:45195 length 0
(1) EAP-Message = 0x010203f619c000000a96160303005e0200005a0303a4f2f123d577a5ab1475eb713c7ae79668b085624dc262ebfb3a20c15d7e76d1202dca13077445f03bdd2011f69c2b973b298c6cb909dd614d917d14454c8b154dc030000012ff01000100000b000403000102000f00010116030308d30b0008cf00
(1) Message-Authenticator = 0x00000000000000000000000000000000
(1) State = 0x83a5a6c582a7bf3297f8fb882007e6d8
(1) Finished request
Waking up in 4.9 seconds.
(2) Received Access-Request Id 2 from 127.0.0.1:45195 to 127.0.0.1:1812 length 150
(2) User-Name = "anonymous(a)nivo.im"
(2) NAS-IP-Address = 127.0.0.1
(2) Calling-Station-Id = "02-00-00-00-00-01"
(2) Framed-MTU = 1400
(2) NAS-Port-Type = Wireless-802.11
(2) Service-Type = Framed-User
(2) Connect-Info = "CONNECT 11Mbps 802.11b"
(2) EAP-Message = 0x020200061900
(2) State = 0x83a5a6c582a7bf3297f8fb882007e6d8
(2) Message-Authenticator = 0xc3baacf775e22132870f178153c40328
(2) session-state: No cached attributes
(2) # Executing section authorize from file /etc/raddb/sites-enabled/nivo-eduroam
(2) authorize {
(2) policy split_username_nai {
(2) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(2) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) -> TRUE
(2) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(2) update request {
(2) EXPAND %{1}
(2) --> anonymous
(2) &Stripped-User-Name := anonymous
(2) EXPAND %{3}
(2) --> nivo.im
(2) &Stripped-User-Domain = nivo.im
(2) } # update request = noop
(2) [updated] = updated
(2) } # if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) = updated
(2) ... skipping else: Preceding "if" was taken
(2) } # policy split_username_nai = updated
(2) if (noop || !&Stripped-User-Domain) {
(2) if (noop || !&Stripped-User-Domain) -> FALSE
(2) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) {
(2) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) -> FALSE
(2) eap: Peer sent EAP Response (code 2) ID 2 length 6
(2) eap: Continuing tunnel setup
(2) [eap] = ok
(2) } # authorize = ok
(2) Found Auth-Type = eap
(2) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(2) authenticate {
(2) eap: Expiring EAP session with state 0x83a5a6c582a7bf32
(2) eap: Finished EAP session with state 0x83a5a6c582a7bf32
(2) eap: Previous EAP request found for state 0x83a5a6c582a7bf32, released from the list
(2) eap: Peer sent packet with method EAP PEAP (25)
(2) eap: Calling submodule eap_peap to process data
(2) eap_peap: Continuing EAP-TLS
(2) eap_peap: Peer ACKed our handshake fragment
(2) eap_peap: [eaptls verify] = request
(2) eap_peap: [eaptls process] = handled
(2) eap: Sending EAP Request (code 1) ID 3 length 1010
(2) eap: EAP session adding &reply:State = 0x83a5a6c581a6bf32
(2) [eap] = handled
(2) } # authenticate = handled
(2) Using Post-Auth-Type Challenge
(2) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(2) Post-Auth-Type Challenge {
(2) if (&reply:Cached-Session-Policy && &reply:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) {
(2) if (&reply:Cached-Session-Policy && &reply:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) -> FALSE
(2) } # Post-Auth-Type Challenge = noop
(2) Sent Access-Challenge Id 2 from 127.0.0.1:1812 to 127.0.0.1:45195 length 0
(2) EAP-Message = 0x010303f21940f9a92d7bc1831ce43842a7729308f0bebd13f6ed29f940d889e39e8c3bc921fbbe4c0bced1da32d8fc80b36ab48f83b37d00a663f8b5e2407701fbce3c4dcfd21530d0c3e94f08e1277619aa8cbc174cd04fc49d38e5f82576712e34f16e66898648396a0004e8308204e4308203cca003
(2) Message-Authenticator = 0x00000000000000000000000000000000
(2) State = 0x83a5a6c581a6bf3297f8fb882007e6d8
(2) Finished request
Waking up in 4.9 seconds.
(3) Received Access-Request Id 3 from 127.0.0.1:45195 to 127.0.0.1:1812 length 150
(3) User-Name = "anonymous(a)nivo.im"
(3) NAS-IP-Address = 127.0.0.1
(3) Calling-Station-Id = "02-00-00-00-00-01"
(3) Framed-MTU = 1400
(3) NAS-Port-Type = Wireless-802.11
(3) Service-Type = Framed-User
(3) Connect-Info = "CONNECT 11Mbps 802.11b"
(3) EAP-Message = 0x020300061900
(3) State = 0x83a5a6c581a6bf3297f8fb882007e6d8
(3) Message-Authenticator = 0x1da38e54b87f3c8958f17c2028642d94
(3) session-state: No cached attributes
(3) # Executing section authorize from file /etc/raddb/sites-enabled/nivo-eduroam
(3) authorize {
(3) policy split_username_nai {
(3) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(3) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) -> TRUE
(3) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(3) update request {
(3) EXPAND %{1}
(3) --> anonymous
(3) &Stripped-User-Name := anonymous
(3) EXPAND %{3}
(3) --> nivo.im
(3) &Stripped-User-Domain = nivo.im
(3) } # update request = noop
(3) [updated] = updated
(3) } # if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) = updated
(3) ... skipping else: Preceding "if" was taken
(3) } # policy split_username_nai = updated
(3) if (noop || !&Stripped-User-Domain) {
(3) if (noop || !&Stripped-User-Domain) -> FALSE
(3) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) {
(3) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) -> FALSE
(3) eap: Peer sent EAP Response (code 2) ID 3 length 6
(3) eap: Continuing tunnel setup
(3) [eap] = ok
(3) } # authorize = ok
(3) Found Auth-Type = eap
(3) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(3) authenticate {
(3) eap: Expiring EAP session with state 0x83a5a6c581a6bf32
(3) eap: Finished EAP session with state 0x83a5a6c581a6bf32
(3) eap: Previous EAP request found for state 0x83a5a6c581a6bf32, released from the list
(3) eap: Peer sent packet with method EAP PEAP (25)
(3) eap: Calling submodule eap_peap to process data
(3) eap_peap: Continuing EAP-TLS
(3) eap_peap: Peer ACKed our handshake fragment
(3) eap_peap: [eaptls verify] = request
(3) eap_peap: [eaptls process] = handled
(3) eap: Sending EAP Request (code 1) ID 4 length 708
(3) eap: EAP session adding &reply:State = 0x83a5a6c580a1bf32
(3) [eap] = handled
(3) } # authenticate = handled
(3) Using Post-Auth-Type Challenge
(3) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(3) Post-Auth-Type Challenge {
(3) if (&reply:Cached-Session-Policy && &reply:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) {
(3) if (&reply:Cached-Session-Policy && &reply:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) -> FALSE
(3) } # Post-Auth-Type Challenge = noop
(3) Sent Access-Challenge Id 3 from 127.0.0.1:1812 to 127.0.0.1:45195 length 0
(3) EAP-Message = 0x010402c41900e4cf09c90800300f0603551d130101ff040530030101ff30360603551d1f042f302d302ba029a0278625687474703a2f2f7777772e6578616d706c652e6f72672f6578616d706c655f63612e63726c300d06092a864886f70d01010b050003820101003803d3dfabad274231f8a05e1ad8
(3) Message-Authenticator = 0x00000000000000000000000000000000
(3) State = 0x83a5a6c580a1bf3297f8fb882007e6d8
(3) Finished request
Waking up in 4.9 seconds.
(4) Received Access-Request Id 4 from 127.0.0.1:45195 to 127.0.0.1:1812 length 280
(4) User-Name = "anonymous(a)nivo.im"
(4) NAS-IP-Address = 127.0.0.1
(4) Calling-Station-Id = "02-00-00-00-00-01"
(4) Framed-MTU = 1400
(4) NAS-Port-Type = Wireless-802.11
(4) Service-Type = Framed-User
(4) Connect-Info = "CONNECT 11Mbps 802.11b"
(4) EAP-Message = 0x0204008819800000007e1603030046100000424104a1a455296c78320c0ac73e21a9fc1b81bcdaec90a80082d60944ade1483d0c129bec406de432b4590dadb0c61bddeaa20678ea06c012bdff92fedc493b973e351403030001011603030028d555a9d7a5232c19830ef49204771f9ac8ad24c593310d
(4) State = 0x83a5a6c580a1bf3297f8fb882007e6d8
(4) Message-Authenticator = 0xf22d6434b677b0c13c5af39287124050
(4) session-state: No cached attributes
(4) # Executing section authorize from file /etc/raddb/sites-enabled/nivo-eduroam
(4) authorize {
(4) policy split_username_nai {
(4) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(4) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) -> TRUE
(4) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(4) update request {
(4) EXPAND %{1}
(4) --> anonymous
(4) &Stripped-User-Name := anonymous
(4) EXPAND %{3}
(4) --> nivo.im
(4) &Stripped-User-Domain = nivo.im
(4) } # update request = noop
(4) [updated] = updated
(4) } # if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) = updated
(4) ... skipping else: Preceding "if" was taken
(4) } # policy split_username_nai = updated
(4) if (noop || !&Stripped-User-Domain) {
(4) if (noop || !&Stripped-User-Domain) -> FALSE
(4) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) {
(4) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) -> FALSE
(4) eap: Peer sent EAP Response (code 2) ID 4 length 136
(4) eap: Continuing tunnel setup
(4) [eap] = ok
(4) } # authorize = ok
(4) Found Auth-Type = eap
(4) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(4) authenticate {
(4) eap: Expiring EAP session with state 0x83a5a6c580a1bf32
(4) eap: Finished EAP session with state 0x83a5a6c580a1bf32
(4) eap: Previous EAP request found for state 0x83a5a6c580a1bf32, released from the list
(4) eap: Peer sent packet with method EAP PEAP (25)
(4) eap: Calling submodule eap_peap to process data
(4) eap_peap: Continuing EAP-TLS
(4) eap_peap: Peer indicated complete TLS record size will be 126 bytes
(4) eap_peap: Got complete TLS record (126 bytes)
(4) eap_peap: [eaptls verify] = length included
(4) eap_peap: <<< recv TLS 1.2 [length 0046]
(4) eap_peap: TLS_accept: unknown state
(4) eap_peap: TLS_accept: unknown state
(4) eap_peap: <<< recv TLS 1.2 [length 0001]
(4) eap_peap: <<< recv TLS 1.2 [length 0010]
(4) eap_peap: TLS_accept: unknown state
(4) eap_peap: >>> send TLS 1.2 [length 0001]
(4) eap_peap: TLS_accept: unknown state
(4) eap_peap: >>> send TLS 1.2 [length 0010]
(4) eap_peap: TLS_accept: unknown state
(4) eap_peap: TLS_accept: unknown state
(4) eap_peap: Serialising session 2dca13077445f03bdd2011f69c2b973b298c6cb909dd614d917d14454c8b154d, and storing in cache
(4) eap_peap: WARNING: Wrote session 2dca13077445f03bdd2011f69c2b973b298c6cb909dd614d917d14454c8b154d to /var/log/radius/tlscache/2dca13077445f03bdd2011f69c2b973b298c6cb909dd614d917d14454c8b154d.asn1 (133 bytes)
(4) eap_peap: (other): SSL negotiation finished successfully
(4) eap_peap: SSL Connection Established
(4) eap_peap: [eaptls process] = handled
(4) eap: Sending EAP Request (code 1) ID 5 length 57
(4) eap: EAP session adding &reply:State = 0x83a5a6c587a0bf32
(4) [eap] = handled
(4) } # authenticate = handled
(4) Using Post-Auth-Type Challenge
(4) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(4) Post-Auth-Type Challenge {
(4) if (&reply:Cached-Session-Policy && &reply:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) {
(4) if (&reply:Cached-Session-Policy && &reply:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) -> FALSE
(4) } # Post-Auth-Type Challenge = noop
(4) session-state: Saving cached attributes
(4) TLS-Cache-Filename = "/var/log/radius/tlscache/2dca13077445f03bdd2011f69c2b973b298c6cb909dd614d917d14454c8b154d.asn1"
(4) Sent Access-Challenge Id 4 from 127.0.0.1:1812 to 127.0.0.1:45195 length 0
(4) EAP-Message = 0x01050039190014030300010116030300288cb26cdae48a74dc6dbef534a1076f2317cafd2255a15e2469a2d298a212df4f1e030418ac22286f
(4) Message-Authenticator = 0x00000000000000000000000000000000
(4) State = 0x83a5a6c587a0bf3297f8fb882007e6d8
(4) Finished request
Waking up in 4.9 seconds.
(5) Received Access-Request Id 5 from 127.0.0.1:45195 to 127.0.0.1:1812 length 150
(5) User-Name = "anonymous(a)nivo.im"
(5) NAS-IP-Address = 127.0.0.1
(5) Calling-Station-Id = "02-00-00-00-00-01"
(5) Framed-MTU = 1400
(5) NAS-Port-Type = Wireless-802.11
(5) Service-Type = Framed-User
(5) Connect-Info = "CONNECT 11Mbps 802.11b"
(5) EAP-Message = 0x020500061900
(5) State = 0x83a5a6c587a0bf3297f8fb882007e6d8
(5) Message-Authenticator = 0x635da02ba9bd74263ddaca65cc1bf424
(5) Restoring &session-state
(5) &session-state:TLS-Cache-Filename = "/var/log/radius/tlscache/2dca13077445f03bdd2011f69c2b973b298c6cb909dd614d917d14454c8b154d.asn1"
(5) # Executing section authorize from file /etc/raddb/sites-enabled/nivo-eduroam
(5) authorize {
(5) policy split_username_nai {
(5) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(5) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) -> TRUE
(5) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(5) update request {
(5) EXPAND %{1}
(5) --> anonymous
(5) &Stripped-User-Name := anonymous
(5) EXPAND %{3}
(5) --> nivo.im
(5) &Stripped-User-Domain = nivo.im
(5) } # update request = noop
(5) [updated] = updated
(5) } # if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) = updated
(5) ... skipping else: Preceding "if" was taken
(5) } # policy split_username_nai = updated
(5) if (noop || !&Stripped-User-Domain) {
(5) if (noop || !&Stripped-User-Domain) -> FALSE
(5) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) {
(5) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) -> FALSE
(5) eap: Peer sent EAP Response (code 2) ID 5 length 6
(5) eap: Continuing tunnel setup
(5) [eap] = ok
(5) } # authorize = ok
(5) Found Auth-Type = eap
(5) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(5) authenticate {
(5) eap: Expiring EAP session with state 0x83a5a6c587a0bf32
(5) eap: Finished EAP session with state 0x83a5a6c587a0bf32
(5) eap: Previous EAP request found for state 0x83a5a6c587a0bf32, released from the list
(5) eap: Peer sent packet with method EAP PEAP (25)
(5) eap: Calling submodule eap_peap to process data
(5) eap_peap: Continuing EAP-TLS
(5) eap_peap: Peer ACKed our handshake fragment. handshake is finished
(5) eap_peap: [eaptls verify] = success
(5) eap_peap: [eaptls process] = success
(5) eap_peap: Session established. Decoding tunneled attributes
(5) eap_peap: PEAP state TUNNEL ESTABLISHED
(5) eap: Sending EAP Request (code 1) ID 6 length 40
(5) eap: EAP session adding &reply:State = 0x83a5a6c586a3bf32
(5) [eap] = handled
(5) } # authenticate = handled
(5) Using Post-Auth-Type Challenge
(5) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(5) Post-Auth-Type Challenge {
(5) if (&reply:Cached-Session-Policy && &reply:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) {
(5) if (&reply:Cached-Session-Policy && &reply:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) -> FALSE
(5) } # Post-Auth-Type Challenge = noop
(5) session-state: Saving cached attributes
(5) TLS-Cache-Filename = "/var/log/radius/tlscache/2dca13077445f03bdd2011f69c2b973b298c6cb909dd614d917d14454c8b154d.asn1"
(5) Sent Access-Challenge Id 5 from 127.0.0.1:1812 to 127.0.0.1:45195 length 0
(5) EAP-Message = 0x010600281900170303001d8cb26cdae48a74ddf10aeb4d683568c03fae04ca77c572c9d6381bbf35
(5) Message-Authenticator = 0x00000000000000000000000000000000
(5) State = 0x83a5a6c586a3bf3297f8fb882007e6d8
(5) Finished request
Waking up in 4.9 seconds.
(6) Received Access-Request Id 6 from 127.0.0.1:45195 to 127.0.0.1:1812 length 199
(6) User-Name = "anonymous(a)nivo.im"
(6) NAS-IP-Address = 127.0.0.1
(6) Calling-Station-Id = "02-00-00-00-00-01"
(6) Framed-MTU = 1400
(6) NAS-Port-Type = Wireless-802.11
(6) Service-Type = Framed-User
(6) Connect-Info = "CONNECT 11Mbps 802.11b"
(6) EAP-Message = 0x020600371900170303002cd555a9d7a5232c1a7e404a719962ba649d98f720d64f302c06c9ea15eb17a9d3dcc7c54e3385bdd0bfe33cf0
(6) State = 0x83a5a6c586a3bf3297f8fb882007e6d8
(6) Message-Authenticator = 0xcb0a8eb8dd3aee90e7221258ef39808c
(6) Restoring &session-state
(6) &session-state:TLS-Cache-Filename = "/var/log/radius/tlscache/2dca13077445f03bdd2011f69c2b973b298c6cb909dd614d917d14454c8b154d.asn1"
(6) # Executing section authorize from file /etc/raddb/sites-enabled/nivo-eduroam
(6) authorize {
(6) policy split_username_nai {
(6) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(6) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) -> TRUE
(6) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(6) update request {
(6) EXPAND %{1}
(6) --> anonymous
(6) &Stripped-User-Name := anonymous
(6) EXPAND %{3}
(6) --> nivo.im
(6) &Stripped-User-Domain = nivo.im
(6) } # update request = noop
(6) [updated] = updated
(6) } # if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) = updated
(6) ... skipping else: Preceding "if" was taken
(6) } # policy split_username_nai = updated
(6) if (noop || !&Stripped-User-Domain) {
(6) if (noop || !&Stripped-User-Domain) -> FALSE
(6) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) {
(6) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) -> FALSE
(6) eap: Peer sent EAP Response (code 2) ID 6 length 55
(6) eap: Continuing tunnel setup
(6) [eap] = ok
(6) } # authorize = ok
(6) Found Auth-Type = eap
(6) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(6) authenticate {
(6) eap: Expiring EAP session with state 0x83a5a6c586a3bf32
(6) eap: Finished EAP session with state 0x83a5a6c586a3bf32
(6) eap: Previous EAP request found for state 0x83a5a6c586a3bf32, released from the list
(6) eap: Peer sent packet with method EAP PEAP (25)
(6) eap: Calling submodule eap_peap to process data
(6) eap_peap: Continuing EAP-TLS
(6) eap_peap: [eaptls verify] = ok
(6) eap_peap: Done initial handshake
(6) eap_peap: [eaptls process] = ok
(6) eap_peap: Session established. Decoding tunneled attributes
(6) eap_peap: PEAP state WAITING FOR INNER IDENTITY
(6) eap_peap: Identity - radius-test(a)nivo.im
(6) eap_peap: Got inner identity 'radius-test(a)nivo.im'
(6) eap_peap: Setting default EAP type for tunneled EAP session
(6) eap_peap: Got tunneled request
(6) eap_peap: EAP-Message = 0x02060018017261646975732d74657374406e69766f2e696d
(6) eap_peap: Setting User-Name to radius-test(a)nivo.im
(6) eap_peap: Sending tunneled request to eduroam-inner
(6) eap_peap: EAP-Message = 0x02060018017261646975732d74657374406e69766f2e696d
(6) eap_peap: FreeRADIUS-Proxied-To = 127.0.0.1
(6) eap_peap: User-Name = "radius-test(a)nivo.im"
(6) eap_peap: NAS-IP-Address = 127.0.0.1
(6) eap_peap: Calling-Station-Id = "02-00-00-00-00-01"
(6) eap_peap: Framed-MTU = 1400
(6) eap_peap: NAS-Port-Type = Wireless-802.11
(6) eap_peap: Service-Type = Framed-User
(6) eap_peap: Connect-Info = "CONNECT 11Mbps 802.11b"
(6) Virtual server eduroam-inner received request
(6) EAP-Message = 0x02060018017261646975732d74657374406e69766f2e696d
(6) FreeRADIUS-Proxied-To = 127.0.0.1
(6) User-Name = "radius-test(a)nivo.im"
(6) NAS-IP-Address = 127.0.0.1
(6) Calling-Station-Id = "02-00-00-00-00-01"
(6) Framed-MTU = 1400
(6) NAS-Port-Type = Wireless-802.11
(6) Service-Type = Framed-User
(6) Connect-Info = "CONNECT 11Mbps 802.11b"
(6) server eduroam-inner {
(6) # Executing section authorize from file /etc/raddb/sites-enabled/nivo-eduroam-inner
(6) authorize {
(6) policy split_username_nai {
(6) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(6) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) -> TRUE
(6) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(6) update request {
(6) EXPAND %{1}
(6) --> radius-test
(6) &Stripped-User-Name := radius-test
(6) EXPAND %{3}
(6) --> nivo.im
(6) &Stripped-User-Domain = nivo.im
(6) } # update request = noop
(6) [updated] = updated
(6) } # if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) = updated
(6) ... skipping else: Preceding "if" was taken
(6) } # policy split_username_nai = updated
(6) if (noop || (&Stripped-User-Domain && (&outer.Stripped-User-Domain != &Stripped-User-Domain))) {
(6) if (noop || (&Stripped-User-Domain && (&outer.Stripped-User-Domain != &Stripped-User-Domain))) -> FALSE
(6) inner-eap: Peer sent EAP Response (code 2) ID 6 length 24
(6) inner-eap: EAP-Identity reply, returning 'ok' so we can short-circuit the rest of authorize
(6) [inner-eap] = ok
(6) } # authorize = ok
(6) Found Auth-Type = inner-eap
(6) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam-inner
(6) authenticate {
(6) inner-eap: Peer sent packet with method EAP Identity (1)
(6) inner-eap: Calling submodule eap_mschapv2 to process data
(6) eap_mschapv2: Issuing Challenge
(6) inner-eap: Sending EAP Request (code 1) ID 7 length 43
(6) inner-eap: EAP session adding &reply:State = 0xfb1af5c9fb1def35
(6) [inner-eap] = handled
(6) } # authenticate = handled
(6) } # server eduroam-inner
(6) Virtual server sending reply
(6) EAP-Message = 0x0107002b1a0107002610d41937003d907712ef774dbca8cc34dc667265657261646975732d332e302e3135
(6) Message-Authenticator = 0x00000000000000000000000000000000
(6) State = 0xfb1af5c9fb1def35157513a9c717c55d
(6) eap_peap: Got tunneled reply code 11
(6) eap_peap: EAP-Message = 0x0107002b1a0107002610d41937003d907712ef774dbca8cc34dc667265657261646975732d332e302e3135
(6) eap_peap: Message-Authenticator = 0x00000000000000000000000000000000
(6) eap_peap: State = 0xfb1af5c9fb1def35157513a9c717c55d
(6) eap_peap: Got tunneled reply RADIUS code 11
(6) eap_peap: EAP-Message = 0x0107002b1a0107002610d41937003d907712ef774dbca8cc34dc667265657261646975732d332e302e3135
(6) eap_peap: Message-Authenticator = 0x00000000000000000000000000000000
(6) eap_peap: State = 0xfb1af5c9fb1def35157513a9c717c55d
(6) eap_peap: Got tunneled Access-Challenge
(6) eap: Sending EAP Request (code 1) ID 7 length 74
(6) eap: EAP session adding &reply:State = 0x83a5a6c585a2bf32
(6) [eap] = handled
(6) } # authenticate = handled
(6) Using Post-Auth-Type Challenge
(6) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(6) Post-Auth-Type Challenge {
(6) if (&reply:Cached-Session-Policy && &reply:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) {
(6) if (&reply:Cached-Session-Policy && &reply:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) -> FALSE
(6) } # Post-Auth-Type Challenge = noop
(6) session-state: Saving cached attributes
(6) TLS-Cache-Filename = "/var/log/radius/tlscache/2dca13077445f03bdd2011f69c2b973b298c6cb909dd614d917d14454c8b154d.asn1"
(6) Sent Access-Challenge Id 6 from 127.0.0.1:1812 to 127.0.0.1:45195 length 0
(6) EAP-Message = 0x0107004a1900170303003f8cb26cdae48a74dec87881efd8d62a908a7d1ddb3bd4243da2120f725575a68aa8accf7909f8ecfcd66e17c501a72ca41155d086d85d354fc9d51c31c377fd
(6) Message-Authenticator = 0x00000000000000000000000000000000
(6) State = 0x83a5a6c585a2bf3297f8fb882007e6d8
(6) Finished request
Waking up in 4.9 seconds.
(7) Received Access-Request Id 7 from 127.0.0.1:45195 to 127.0.0.1:1812 length 253
(7) User-Name = "anonymous(a)nivo.im"
(7) NAS-IP-Address = 127.0.0.1
(7) Calling-Station-Id = "02-00-00-00-00-01"
(7) Framed-MTU = 1400
(7) NAS-Port-Type = Wireless-802.11
(7) Service-Type = Framed-User
(7) Connect-Info = "CONNECT 11Mbps 802.11b"
(7) EAP-Message = 0x0207006d19001703030062d555a9d7a5232c1bfb602be71ac506ab40e0048020768c920e2d5640fac15ca5e03b5f194bd604e782ea40a408f996268b8b1032de7eab329a611c852ea2651e9726c9ff0a40104838f4ff1c863c0b455818b690c26e205e2e39b893fcf7060d6e66
(7) State = 0x83a5a6c585a2bf3297f8fb882007e6d8
(7) Message-Authenticator = 0xb1aa26a3f3238f694baff19daef1c49f
(7) Restoring &session-state
(7) &session-state:TLS-Cache-Filename = "/var/log/radius/tlscache/2dca13077445f03bdd2011f69c2b973b298c6cb909dd614d917d14454c8b154d.asn1"
(7) # Executing section authorize from file /etc/raddb/sites-enabled/nivo-eduroam
(7) authorize {
(7) policy split_username_nai {
(7) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(7) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) -> TRUE
(7) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(7) update request {
(7) EXPAND %{1}
(7) --> anonymous
(7) &Stripped-User-Name := anonymous
(7) EXPAND %{3}
(7) --> nivo.im
(7) &Stripped-User-Domain = nivo.im
(7) } # update request = noop
(7) [updated] = updated
(7) } # if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) = updated
(7) ... skipping else: Preceding "if" was taken
(7) } # policy split_username_nai = updated
(7) if (noop || !&Stripped-User-Domain) {
(7) if (noop || !&Stripped-User-Domain) -> FALSE
(7) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) {
(7) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) -> FALSE
(7) eap: Peer sent EAP Response (code 2) ID 7 length 109
(7) eap: Continuing tunnel setup
(7) [eap] = ok
(7) } # authorize = ok
(7) Found Auth-Type = eap
(7) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(7) authenticate {
(7) eap: Expiring EAP session with state 0x83a5a6c585a2bf32
(7) eap: Finished EAP session with state 0x83a5a6c585a2bf32
(7) eap: Previous EAP request found for state 0x83a5a6c585a2bf32, released from the list
(7) eap: Peer sent packet with method EAP PEAP (25)
(7) eap: Calling submodule eap_peap to process data
(7) eap_peap: Continuing EAP-TLS
(7) eap_peap: [eaptls verify] = ok
(7) eap_peap: Done initial handshake
(7) eap_peap: [eaptls process] = ok
(7) eap_peap: Session established. Decoding tunneled attributes
(7) eap_peap: PEAP state phase2
(7) eap_peap: EAP method MSCHAPv2 (26)
(7) eap_peap: Got tunneled request
(7) eap_peap: EAP-Message = 0x0207004e1a0207004931dbc2433d9ded0530d4e0d99bb7319cc10000000000000000023df6c38ea64f8069dc29233129b9bba71271cc1821e701007261646975732d74657374406e69766f2e696d
(7) eap_peap: Setting User-Name to radius-test(a)nivo.im
(7) eap_peap: Sending tunneled request to eduroam-inner
(7) eap_peap: EAP-Message = 0x0207004e1a0207004931dbc2433d9ded0530d4e0d99bb7319cc10000000000000000023df6c38ea64f8069dc29233129b9bba71271cc1821e701007261646975732d74657374406e69766f2e696d
(7) eap_peap: FreeRADIUS-Proxied-To = 127.0.0.1
(7) eap_peap: User-Name = "radius-test(a)nivo.im"
(7) eap_peap: State = 0xfb1af5c9fb1def35157513a9c717c55d
(7) eap_peap: NAS-IP-Address = 127.0.0.1
(7) eap_peap: Calling-Station-Id = "02-00-00-00-00-01"
(7) eap_peap: Framed-MTU = 1400
(7) eap_peap: NAS-Port-Type = Wireless-802.11
(7) eap_peap: Service-Type = Framed-User
(7) eap_peap: Connect-Info = "CONNECT 11Mbps 802.11b"
(7) Virtual server eduroam-inner received request
(7) EAP-Message = 0x0207004e1a0207004931dbc2433d9ded0530d4e0d99bb7319cc10000000000000000023df6c38ea64f8069dc29233129b9bba71271cc1821e701007261646975732d74657374406e69766f2e696d
(7) FreeRADIUS-Proxied-To = 127.0.0.1
(7) User-Name = "radius-test(a)nivo.im"
(7) State = 0xfb1af5c9fb1def35157513a9c717c55d
(7) NAS-IP-Address = 127.0.0.1
(7) Calling-Station-Id = "02-00-00-00-00-01"
(7) Framed-MTU = 1400
(7) NAS-Port-Type = Wireless-802.11
(7) Service-Type = Framed-User
(7) Connect-Info = "CONNECT 11Mbps 802.11b"
(7) server eduroam-inner {
(7) session-state: No cached attributes
(7) # Executing section authorize from file /etc/raddb/sites-enabled/nivo-eduroam-inner
(7) authorize {
(7) policy split_username_nai {
(7) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(7) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) -> TRUE
(7) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(7) update request {
(7) EXPAND %{1}
(7) --> radius-test
(7) &Stripped-User-Name := radius-test
(7) EXPAND %{3}
(7) --> nivo.im
(7) &Stripped-User-Domain = nivo.im
(7) } # update request = noop
(7) [updated] = updated
(7) } # if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) = updated
(7) ... skipping else: Preceding "if" was taken
(7) } # policy split_username_nai = updated
(7) if (noop || (&Stripped-User-Domain && (&outer.Stripped-User-Domain != &Stripped-User-Domain))) {
(7) if (noop || (&Stripped-User-Domain && (&outer.Stripped-User-Domain != &Stripped-User-Domain))) -> FALSE
(7) inner-eap: Peer sent EAP Response (code 2) ID 7 length 78
(7) inner-eap: No EAP Start, assuming it's an on-going EAP conversation
(7) [inner-eap] = updated
rlm_ldap (ldap): Reserved connection (1)
(7) ldap: EXPAND (nivoUserName=%{%{Stripped-User-Name}:-%{User-Name}})
(7) ldap: --> (nivoUserName=radius-test)
(7) ldap: Performing search in "ou=identities,o=vault" with filter "(nivoUserName=radius-test)", scope "sub"
(7) ldap: Waiting for search result...
(7) ldap: User object found at DN "cn=radius-test,ou=guests,ou=identities,o=vault"
(7) ldap: Added eDirectory password
(7) ldap: Binding as user for eDirectory authorization checks
(7) ldap: Waiting for bind result...
(7) ldap: Bind successful
(7) ldap: Bind as user 'cn=radius-test,ou=guests,ou=identities,o=vault' was successful
(7) ldap: Waiting for bind result...
(7) ldap: Bind successful
(7) ldap: Performing search in "cn=default,ou=profiles,ou=radius,o=config" with filter "(objectclass=nivoRadiusProfile)", scope "base"
(7) ldap: Waiting for search result...
(7) ldap: Processing profile attributes
(7) ldap: Tunnel-Medium-Type := IEEE-802
(7) ldap: Tunnel-Private-Group-Id := 100
(7) ldap: Tunnel-Type := VLAN
(7) ldap: Processing user attributes
rlm_ldap (ldap): Released connection (1)
Need 4 more connections to reach 10 spares
rlm_ldap (ldap): Opening additional connection (6), 1 of 26 pending slots used
rlm_ldap (ldap): Connecting to ldap://localhost:389
TLS certificate verification: Error, self signed certificate in certificate chain
rlm_ldap (ldap): Waiting for bind result...
rlm_ldap (ldap): Bind successful
(7) [ldap] = updated
(7) update {
rlm_ldap (ldap): Reserved connection (2)
(7) Performing search in "ou=groups,o=vault" with filter "(&(member=cn\3dradius-test\2cou\3dguests\2cou\3didentities\2co\3dvault)(nivoRadiusProfileDN=*))", scope "one"
(7) Waiting for search result...
(7) Search returned no results
rlm_ldap (ldap): Released connection (2)
(7) EXPAND %{ldap:ldap:///ou=groups,o=vault?nivoRadiusProfileDN?one?(&(member=%{control:Ldap-UserDN})(nivoRadiusProfileDN=*))}
(7) -->
(7) User-Profile :=
(7) } # update = noop
(7) pap: WARNING: Auth-Type already set. Not setting to PAP
(7) [pap] = noop
(7) [mschap] = noop
(7) } # authorize = updated
(7) Found Auth-Type = inner-eap
(7) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam-inner
(7) authenticate {
(7) inner-eap: Expiring EAP session with state 0xfb1af5c9fb1def35
(7) inner-eap: Finished EAP session with state 0xfb1af5c9fb1def35
(7) inner-eap: Previous EAP request found for state 0xfb1af5c9fb1def35, released from the list
(7) inner-eap: Peer sent packet with method EAP MSCHAPv2 (26)
(7) inner-eap: Calling submodule eap_mschapv2 to process data
(7) eap_mschapv2: # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam-inner
(7) eap_mschapv2: authenticate {
(7) mschap: Found Cleartext-Password, hashing to create NT-Password
(7) mschap: Found Cleartext-Password, hashing to create LM-Password
(7) mschap: Creating challenge hash with username: radius-test(a)nivo.im
(7) mschap: Client is using MS-CHAPv2
(7) mschap: Adding MS-CHAPv2 MPPE keys
(7) [mschap] = ok
(7) } # authenticate = ok
(7) MSCHAP Success
(7) inner-eap: Sending EAP Request (code 1) ID 8 length 51
(7) inner-eap: EAP session adding &reply:State = 0xfb1af5c9fa12ef35
(7) [inner-eap] = handled
(7) } # authenticate = handled
(7) } # server eduroam-inner
(7) Virtual server sending reply
(7) Tunnel-Medium-Type := IEEE-802
(7) Tunnel-Private-Group-Id := "100"
(7) Tunnel-Type := VLAN
(7) EAP-Message = 0x010800331a0307002e533d46364144364644453838443438353230413045393130313737313034313731423536373841383345
(7) Message-Authenticator = 0x00000000000000000000000000000000
(7) State = 0xfb1af5c9fa12ef35157513a9c717c55d
(7) eap_peap: Got tunneled reply code 11
(7) eap_peap: Tunnel-Medium-Type := IEEE-802
(7) eap_peap: Tunnel-Private-Group-Id := "100"
(7) eap_peap: Tunnel-Type := VLAN
(7) eap_peap: EAP-Message = 0x010800331a0307002e533d46364144364644453838443438353230413045393130313737313034313731423536373841383345
(7) eap_peap: Message-Authenticator = 0x00000000000000000000000000000000
(7) eap_peap: State = 0xfb1af5c9fa12ef35157513a9c717c55d
(7) eap_peap: Got tunneled reply RADIUS code 11
(7) eap_peap: Tunnel-Medium-Type := IEEE-802
(7) eap_peap: Tunnel-Private-Group-Id := "100"
(7) eap_peap: Tunnel-Type := VLAN
(7) eap_peap: EAP-Message = 0x010800331a0307002e533d46364144364644453838443438353230413045393130313737313034313731423536373841383345
(7) eap_peap: Message-Authenticator = 0x00000000000000000000000000000000
(7) eap_peap: State = 0xfb1af5c9fa12ef35157513a9c717c55d
(7) eap_peap: Got tunneled Access-Challenge
(7) eap: Sending EAP Request (code 1) ID 8 length 82
(7) eap: EAP session adding &reply:State = 0x83a5a6c584adbf32
(7) [eap] = handled
(7) } # authenticate = handled
(7) Using Post-Auth-Type Challenge
(7) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(7) Post-Auth-Type Challenge {
(7) if (&reply:Cached-Session-Policy && &reply:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) {
(7) if (&reply:Cached-Session-Policy && &reply:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) -> FALSE
(7) } # Post-Auth-Type Challenge = noop
(7) session-state: Saving cached attributes
(7) TLS-Cache-Filename = "/var/log/radius/tlscache/2dca13077445f03bdd2011f69c2b973b298c6cb909dd614d917d14454c8b154d.asn1"
(7) Sent Access-Challenge Id 7 from 127.0.0.1:1812 to 127.0.0.1:45195 length 0
(7) EAP-Message = 0x01080052190017030300478cb26cdae48a74dfe5d6b80e6659a4d3cdcb60924d42d1fc17756a8df98c7fbb5df3415fd1878a16a90db9ffc87a8ca04f14a788159fda58a88d3228bfc710f8ada09e0dc86143
(7) Message-Authenticator = 0x00000000000000000000000000000000
(7) State = 0x83a5a6c584adbf3297f8fb882007e6d8
(7) Finished request
Waking up in 4.9 seconds.
(8) Received Access-Request Id 8 from 127.0.0.1:45195 to 127.0.0.1:1812 length 181
(8) User-Name = "anonymous(a)nivo.im"
(8) NAS-IP-Address = 127.0.0.1
(8) Calling-Station-Id = "02-00-00-00-00-01"
(8) Framed-MTU = 1400
(8) NAS-Port-Type = Wireless-802.11
(8) Service-Type = Framed-User
(8) Connect-Info = "CONNECT 11Mbps 802.11b"
(8) EAP-Message = 0x020800251900170303001ad555a9d7a5232c1cf57207ad5a3a2db4faaf3ffab6463939dc09
(8) State = 0x83a5a6c584adbf3297f8fb882007e6d8
(8) Message-Authenticator = 0x685a6a0787c917d31df8b3010a666400
(8) Restoring &session-state
(8) &session-state:TLS-Cache-Filename = "/var/log/radius/tlscache/2dca13077445f03bdd2011f69c2b973b298c6cb909dd614d917d14454c8b154d.asn1"
(8) # Executing section authorize from file /etc/raddb/sites-enabled/nivo-eduroam
(8) authorize {
(8) policy split_username_nai {
(8) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(8) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) -> TRUE
(8) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(8) update request {
(8) EXPAND %{1}
(8) --> anonymous
(8) &Stripped-User-Name := anonymous
(8) EXPAND %{3}
(8) --> nivo.im
(8) &Stripped-User-Domain = nivo.im
(8) } # update request = noop
(8) [updated] = updated
(8) } # if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) = updated
(8) ... skipping else: Preceding "if" was taken
(8) } # policy split_username_nai = updated
(8) if (noop || !&Stripped-User-Domain) {
(8) if (noop || !&Stripped-User-Domain) -> FALSE
(8) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) {
(8) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) -> FALSE
(8) eap: Peer sent EAP Response (code 2) ID 8 length 37
(8) eap: Continuing tunnel setup
(8) [eap] = ok
(8) } # authorize = ok
(8) Found Auth-Type = eap
(8) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(8) authenticate {
(8) eap: Expiring EAP session with state 0x83a5a6c584adbf32
(8) eap: Finished EAP session with state 0x83a5a6c584adbf32
(8) eap: Previous EAP request found for state 0x83a5a6c584adbf32, released from the list
(8) eap: Peer sent packet with method EAP PEAP (25)
(8) eap: Calling submodule eap_peap to process data
(8) eap_peap: Continuing EAP-TLS
(8) eap_peap: [eaptls verify] = ok
(8) eap_peap: Done initial handshake
(8) eap_peap: [eaptls process] = ok
(8) eap_peap: Session established. Decoding tunneled attributes
(8) eap_peap: PEAP state phase2
(8) eap_peap: EAP method MSCHAPv2 (26)
(8) eap_peap: Got tunneled request
(8) eap_peap: EAP-Message = 0x020800061a03
(8) eap_peap: Setting User-Name to radius-test(a)nivo.im
(8) eap_peap: Sending tunneled request to eduroam-inner
(8) eap_peap: EAP-Message = 0x020800061a03
(8) eap_peap: FreeRADIUS-Proxied-To = 127.0.0.1
(8) eap_peap: User-Name = "radius-test(a)nivo.im"
(8) eap_peap: State = 0xfb1af5c9fa12ef35157513a9c717c55d
(8) eap_peap: NAS-IP-Address = 127.0.0.1
(8) eap_peap: Calling-Station-Id = "02-00-00-00-00-01"
(8) eap_peap: Framed-MTU = 1400
(8) eap_peap: NAS-Port-Type = Wireless-802.11
(8) eap_peap: Service-Type = Framed-User
(8) eap_peap: Connect-Info = "CONNECT 11Mbps 802.11b"
(8) Virtual server eduroam-inner received request
(8) EAP-Message = 0x020800061a03
(8) FreeRADIUS-Proxied-To = 127.0.0.1
(8) User-Name = "radius-test(a)nivo.im"
(8) State = 0xfb1af5c9fa12ef35157513a9c717c55d
(8) NAS-IP-Address = 127.0.0.1
(8) Calling-Station-Id = "02-00-00-00-00-01"
(8) Framed-MTU = 1400
(8) NAS-Port-Type = Wireless-802.11
(8) Service-Type = Framed-User
(8) Connect-Info = "CONNECT 11Mbps 802.11b"
(8) server eduroam-inner {
(8) session-state: No cached attributes
(8) # Executing section authorize from file /etc/raddb/sites-enabled/nivo-eduroam-inner
(8) authorize {
(8) policy split_username_nai {
(8) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(8) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) -> TRUE
(8) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(8) update request {
(8) EXPAND %{1}
(8) --> radius-test
(8) &Stripped-User-Name := radius-test
(8) EXPAND %{3}
(8) --> nivo.im
(8) &Stripped-User-Domain = nivo.im
(8) } # update request = noop
(8) [updated] = updated
(8) } # if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) = updated
(8) ... skipping else: Preceding "if" was taken
(8) } # policy split_username_nai = updated
(8) if (noop || (&Stripped-User-Domain && (&outer.Stripped-User-Domain != &Stripped-User-Domain))) {
(8) if (noop || (&Stripped-User-Domain && (&outer.Stripped-User-Domain != &Stripped-User-Domain))) -> FALSE
(8) inner-eap: Peer sent EAP Response (code 2) ID 8 length 6
(8) inner-eap: No EAP Start, assuming it's an on-going EAP conversation
(8) [inner-eap] = updated
rlm_ldap (ldap): Reserved connection (3)
(8) ldap: EXPAND (nivoUserName=%{%{Stripped-User-Name}:-%{User-Name}})
(8) ldap: --> (nivoUserName=radius-test)
(8) ldap: Performing search in "ou=identities,o=vault" with filter "(nivoUserName=radius-test)", scope "sub"
(8) ldap: Waiting for search result...
(8) ldap: User object found at DN "cn=radius-test,ou=guests,ou=identities,o=vault"
(8) ldap: Added eDirectory password
(8) ldap: Binding as user for eDirectory authorization checks
(8) ldap: Waiting for bind result...
(8) ldap: Bind successful
(8) ldap: Bind as user 'cn=radius-test,ou=guests,ou=identities,o=vault' was successful
(8) ldap: Waiting for bind result...
(8) ldap: Bind successful
(8) ldap: Performing search in "cn=default,ou=profiles,ou=radius,o=config" with filter "(objectclass=nivoRadiusProfile)", scope "base"
(8) ldap: Waiting for search result...
(8) ldap: Processing profile attributes
(8) ldap: Tunnel-Medium-Type := IEEE-802
(8) ldap: Tunnel-Private-Group-Id := 100
(8) ldap: Tunnel-Type := VLAN
(8) ldap: Processing user attributes
rlm_ldap (ldap): Released connection (3)
(8) [ldap] = updated
(8) update {
rlm_ldap (ldap): Reserved connection (4)
(8) Performing search in "ou=groups,o=vault" with filter "(&(member=cn\3dradius-test\2cou\3dguests\2cou\3didentities\2co\3dvault)(nivoRadiusProfileDN=*))", scope "one"
(8) Waiting for search result...
(8) Search returned no results
rlm_ldap (ldap): Released connection (4)
(8) EXPAND %{ldap:ldap:///ou=groups,o=vault?nivoRadiusProfileDN?one?(&(member=%{control:Ldap-UserDN})(nivoRadiusProfileDN=*))}
(8) -->
(8) User-Profile :=
(8) } # update = noop
(8) pap: WARNING: Auth-Type already set. Not setting to PAP
(8) [pap] = noop
(8) [mschap] = noop
(8) } # authorize = updated
(8) Found Auth-Type = inner-eap
(8) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam-inner
(8) authenticate {
(8) inner-eap: Expiring EAP session with state 0xfb1af5c9fa12ef35
(8) inner-eap: Finished EAP session with state 0xfb1af5c9fa12ef35
(8) inner-eap: Previous EAP request found for state 0xfb1af5c9fa12ef35, released from the list
(8) inner-eap: Peer sent packet with method EAP MSCHAPv2 (26)
(8) inner-eap: Calling submodule eap_mschapv2 to process data
(8) inner-eap: Sending EAP Success (code 3) ID 8 length 4
(8) inner-eap: Freeing handler
(8) [inner-eap] = ok
(8) } # authenticate = ok
(8) # Executing section post-auth from file /etc/raddb/sites-enabled/nivo-eduroam-inner
(8) post-auth {
(8) if (&User-Profile =~ /^cn=([^,]+).*$/) {
(8) if (&User-Profile =~ /^cn=([^,]+).*$/) -> FALSE
(8) if (&reply:Tunnel-Private-Group-ID) {
(8) if (&reply:Tunnel-Private-Group-ID) -> TRUE
(8) if (&reply:Tunnel-Private-Group-ID) {
(8) update reply {
(8) EXPAND v=%{reply:Tunnel-Private-Group-ID},t=%{reply:Tunnel-Type},m=%{reply:Tunnel-Medium-Type}
(8) --> v=100,t=VLAN,m=IEEE-802
(8) Cached-Session-Policy := v=100,t=VLAN,m=IEEE-802
(8) } # update reply = noop
(8) } # if (&reply:Tunnel-Private-Group-ID) = noop
(8) } # post-auth = noop
(8) } # server eduroam-inner
(8) Virtual server sending reply
(8) Tunnel-Medium-Type := IEEE-802
(8) Tunnel-Private-Group-Id := "100"
(8) Tunnel-Type := VLAN
(8) MS-MPPE-Encryption-Policy = Encryption-Allowed
(8) MS-MPPE-Encryption-Types = RC4-40or128-bit-Allowed
(8) MS-MPPE-Send-Key = 0x030d3b1fa5ef089ee301c78f5f1f581d
(8) MS-MPPE-Recv-Key = 0x4c21e4dcd91f8e5070903fe456cf030f
(8) EAP-Message = 0x03080004
(8) Message-Authenticator = 0x00000000000000000000000000000000
(8) Stripped-User-Name := "radius-test"
(8) Cached-Session-Policy := "v=100,t=VLAN,m=IEEE-802"
(8) eap_peap: Got tunneled reply code 2
(8) eap_peap: Tunnel-Medium-Type := IEEE-802
(8) eap_peap: Tunnel-Private-Group-Id := "100"
(8) eap_peap: Tunnel-Type := VLAN
(8) eap_peap: MS-MPPE-Encryption-Policy = Encryption-Allowed
(8) eap_peap: MS-MPPE-Encryption-Types = RC4-40or128-bit-Allowed
(8) eap_peap: MS-MPPE-Send-Key = 0x030d3b1fa5ef089ee301c78f5f1f581d
(8) eap_peap: MS-MPPE-Recv-Key = 0x4c21e4dcd91f8e5070903fe456cf030f
(8) eap_peap: EAP-Message = 0x03080004
(8) eap_peap: Message-Authenticator = 0x00000000000000000000000000000000
(8) eap_peap: Stripped-User-Name := "radius-test"
(8) eap_peap: Cached-Session-Policy := "v=100,t=VLAN,m=IEEE-802"
(8) eap_peap: Got tunneled reply RADIUS code 2
(8) eap_peap: Tunnel-Medium-Type := IEEE-802
(8) eap_peap: Tunnel-Private-Group-Id := "100"
(8) eap_peap: Tunnel-Type := VLAN
(8) eap_peap: MS-MPPE-Encryption-Policy = Encryption-Allowed
(8) eap_peap: MS-MPPE-Encryption-Types = RC4-40or128-bit-Allowed
(8) eap_peap: MS-MPPE-Send-Key = 0x030d3b1fa5ef089ee301c78f5f1f581d
(8) eap_peap: MS-MPPE-Recv-Key = 0x4c21e4dcd91f8e5070903fe456cf030f
(8) eap_peap: EAP-Message = 0x03080004
(8) eap_peap: Message-Authenticator = 0x00000000000000000000000000000000
(8) eap_peap: Stripped-User-Name := "radius-test"
(8) eap_peap: Cached-Session-Policy := "v=100,t=VLAN,m=IEEE-802"
(8) eap_peap: Tunneled authentication was successful
(8) eap_peap: SUCCESS
(8) eap: Sending EAP Request (code 1) ID 9 length 46
(8) eap: EAP session adding &reply:State = 0x83a5a6c58bacbf32
(8) [eap] = handled
(8) } # authenticate = handled
(8) Using Post-Auth-Type Challenge
(8) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(8) Post-Auth-Type Challenge {
(8) if (&reply:Cached-Session-Policy && &reply:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) {
(8) if (&reply:Cached-Session-Policy && &reply:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) -> FALSE
(8) } # Post-Auth-Type Challenge = noop
(8) session-state: Saving cached attributes
(8) TLS-Cache-Filename = "/var/log/radius/tlscache/2dca13077445f03bdd2011f69c2b973b298c6cb909dd614d917d14454c8b154d.asn1"
(8) Sent Access-Challenge Id 8 from 127.0.0.1:1812 to 127.0.0.1:45195 length 0
(8) EAP-Message = 0x0109002e190017030300238cb26cdae48a74e021f3e5676aa48cab90be1b096db2d4e59ba183040d89daedc06f22
(8) Message-Authenticator = 0x00000000000000000000000000000000
(8) State = 0x83a5a6c58bacbf3297f8fb882007e6d8
(8) Finished request
Waking up in 4.8 seconds.
(9) Received Access-Request Id 9 from 127.0.0.1:45195 to 127.0.0.1:1812 length 190
(9) User-Name = "anonymous(a)nivo.im"
(9) NAS-IP-Address = 127.0.0.1
(9) Calling-Station-Id = "02-00-00-00-00-01"
(9) Framed-MTU = 1400
(9) NAS-Port-Type = Wireless-802.11
(9) Service-Type = Framed-User
(9) Connect-Info = "CONNECT 11Mbps 802.11b"
(9) EAP-Message = 0x0209002e19001703030023d555a9d7a5232c1df98262637e77c14e4294e91bbf98b6af39f71f4df273d5b0841a0f
(9) State = 0x83a5a6c58bacbf3297f8fb882007e6d8
(9) Message-Authenticator = 0x437a157bbe6995fae1e0a98bbed98f44
(9) Restoring &session-state
(9) &session-state:TLS-Cache-Filename = "/var/log/radius/tlscache/2dca13077445f03bdd2011f69c2b973b298c6cb909dd614d917d14454c8b154d.asn1"
(9) # Executing section authorize from file /etc/raddb/sites-enabled/nivo-eduroam
(9) authorize {
(9) policy split_username_nai {
(9) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(9) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) -> TRUE
(9) if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) {
(9) update request {
(9) EXPAND %{1}
(9) --> anonymous
(9) &Stripped-User-Name := anonymous
(9) EXPAND %{3}
(9) --> nivo.im
(9) &Stripped-User-Domain = nivo.im
(9) } # update request = noop
(9) [updated] = updated
(9) } # if (&User-Name && (&User-Name =~ /^([^@]*)(@([-[:alnum:]]+\.[-[:alnum:].]+))?$/)) = updated
(9) ... skipping else: Preceding "if" was taken
(9) } # policy split_username_nai = updated
(9) if (noop || !&Stripped-User-Domain) {
(9) if (noop || !&Stripped-User-Domain) -> FALSE
(9) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) {
(9) if (&Stripped-User-Domain !~ /[Nn]ivo\.im/) -> FALSE
(9) eap: Peer sent EAP Response (code 2) ID 9 length 46
(9) eap: Continuing tunnel setup
(9) [eap] = ok
(9) } # authorize = ok
(9) Found Auth-Type = eap
(9) # Executing group from file /etc/raddb/sites-enabled/nivo-eduroam
(9) authenticate {
(9) eap: Expiring EAP session with state 0x83a5a6c58bacbf32
(9) eap: Finished EAP session with state 0x83a5a6c58bacbf32
(9) eap: Previous EAP request found for state 0x83a5a6c58bacbf32, released from the list
(9) eap: Peer sent packet with method EAP PEAP (25)
(9) eap: Calling submodule eap_peap to process data
(9) eap_peap: Continuing EAP-TLS
(9) eap_peap: [eaptls verify] = ok
(9) eap_peap: Done initial handshake
(9) eap_peap: [eaptls process] = ok
(9) eap_peap: Session established. Decoding tunneled attributes
(9) eap_peap: PEAP state send tlv success
(9) eap_peap: Received EAP-TLV response
(9) eap_peap: Success
(9) eap_peap: caching Stripped-User-Name := "anonymous"
(9) eap_peap: caching Stripped-User-Domain = "nivo.im"
(9) eap_peap: Saving session 2dca13077445f03bdd2011f69c2b973b298c6cb909dd614d917d14454c8b154d in the disk cache
(9) eap: Sending EAP Success (code 3) ID 9 length 4
(9) eap: Freeing handler
tls: Freeing cached session VPs
(9) [eap] = ok
(9) } # authenticate = ok
(9) # Executing section post-auth from file /etc/raddb/sites-enabled/nivo-eduroam
(9) post-auth {
(9) if (&control:Proxy-To-Realm && &control:Proxy-To-Realm == 'eduroam_flr') {
(9) if (&control:Proxy-To-Realm && &control:Proxy-To-Realm == 'eduroam_flr') -> FALSE
(9) if (&session-state:Stripped-User-Name) {
(9) if (&session-state:Stripped-User-Name) -> FALSE
(9) if (&session-state:Cached-Session-Policy && &session-state:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) {
(9) if (&session-state:Cached-Session-Policy && &session-state:Cached-Session-Policy =~ /v=(.+),t=(.+),m=(.+)/) -> FALSE
(9) linelog_send_accept: EXPAND action = Send-Accept, %{pairs:reply:}
(9) linelog_send_accept: --> action = Send-Accept, MS-MPPE-Recv-Key = 0x23263892d14c397f30d373067ad29f8c673a19bd0fa42a3e3b74f89cf3fa1f58, MS-MPPE-Send-Key = 0x199553d51fbc32a32a4fcd3edec9f0f0a59836cca6798cd552a9baae611e7899, EAP-MSK = 0x23263892d14c397f30d373067ad29f8c673a19bd0fa42a3e3b74f89cf3fa1f58199553d51fbc32a32a4fcd3edec9f0f0a59836cca6798cd552a9baae611e7899, EAP-EMSK = 0xec548a61ce6133e7a67ecdc37eab50d314b44fbe025f3e8a08288a5da4d62662408e8b8fb0eb65efff3af51b1c0635190555e44e6c4491544f4a57a4b3e3fbd0, EAP-Session-Id = 0x19ce8317d9ecb7a6bf3c59be1461cc65455c708fd520665680cbccbdec4085cbcfa4f2f123d577a5ab1475eb713c7ae79668b085624dc262ebfb3a20c15d7e76d1, EAP-Message = 0x03090004, Message-Authenticator = 0x00000000000000000000000000000000, Stripped-User-Name = "anonymous"
(9) [linelog_send_accept] = ok
(9) } # post-auth = ok
(9) Sent Access-Accept Id 9 from 127.0.0.1:1812 to 127.0.0.1:45195 length 0
(9) MS-MPPE-Recv-Key = 0x23263892d14c397f30d373067ad29f8c673a19bd0fa42a3e3b74f89cf3fa1f58
(9) MS-MPPE-Send-Key = 0x199553d51fbc32a32a4fcd3edec9f0f0a59836cca6798cd552a9baae611e7899
(9) EAP-Message = 0x03090004
(9) Message-Authenticator = 0x00000000000000000000000000000000
(9) Finished request
Waking up in 4.8 seconds.
(0) Cleaning up request packet ID 0 with timestamp +25
(1) Cleaning up request packet ID 1 with timestamp +25
(2) Cleaning up request packet ID 2 with timestamp +25
(3) Cleaning up request packet ID 3 with timestamp +25
(4) Cleaning up request packet ID 4 with timestamp +25
(5) Cleaning up request packet ID 5 with timestamp +25
(6) Cleaning up request packet ID 6 with timestamp +25
(7) Cleaning up request packet ID 7 with timestamp +25
(8) Cleaning up request packet ID 8 with timestamp +25
(9) Cleaning up request packet ID 9 with timestamp +25
Ready to process requests
3
5