Fwd: EAP-sim using freeradius
Hi, Freeradius Version: 3.0 I had a question about EAP-SIM. We previously got EAP-SIM to work on the Free-radius version 2. But once we upgraded to 3.0, we saw the rlm_sim_files has been deprecated and now we need to use rlm_passwd. I made the following changes the config files: 1. eap - added to the eap{} sim { } 2. Changed passwd file under mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*User-Name:User-Password" hash_size = 100 ignore_nislike = no allow_multiple_keys = no } /usr/local/etc/raddb/simtriplets.dat: 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:2 ADE1426F93045258CCD7B9CF739CD51:CA1a6a73:44163dcd3063ee06 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org: A7DB577E986F41e999981FE01E8E9351:9E0ec181:2B3182377B3d2e05 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:92 F13B6BB93641b0914DD3D6DAAFB78C:9Ca5541a:767e395d867fa4b0 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:3 D6978EEB53E4c9f94F116A4AFC15EEC:09381b57:68fca592D475ada8 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:56 F874F6F0C543c6B1D54CCE3B425E2B:3Ce1debe:4B16c28f5D165ab6 3. Added passwd in authorize section in default file under sites-available: passwd eap { ok = return } The radiusd starts up fine with this configuration. But when I run the SIM test, I see the following error: *eap_sim: ERROR: EAP-SIM-RAND1 not found* Is there any documentation on how to setup rlm_passwd for EAP-SIM? Any help in this regard would be appreciated. Thanks Siddharth (Wifi Test, Google inc)
On Aug 11, 2015, at 11:38 PM, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
I had a question about EAP-SIM. We previously got EAP-SIM to work on the Free-radius version 2. But once we upgraded to 3.0, we saw the rlm_sim_files has been deprecated and now we need to use rlm_passwd.
Or anything else. The passwd module can read simple files, which is pretty much what sim_files did.
2. Changed passwd file under mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*User-Name:User-Password"
That won't work. You need to make sure that the data file is formatted in a way the "passwd" module likes. Then, ensure that the "format" string for the passwd module reads the SIM triplets from the correct field. Here, you've told it to "look up User-Name, and get the User-Password" from the file. That clearly isn't what you want. So... read the passwd documentation, and fix the "format" line to have the names of the SIM triplet attributes. Alan DeKok.
Hi Alan, For the format, I did try this: format = "*IMSI:RAND:SRES:KC" I assumed for EAP-SIM, the IMSI is the key attribute and the triplet of RAND:SRES:KC will be the password?? I get the following error: rlm_passwd: unable to resolve attribute IMSI I tried to lookup the corr. attribute names for IMSI, Rand, Sres, KC on the Freeradius Attribute RFC but couldn't find them: http://freeradius.org/rfc/attributes.html Can you please help me define the "format" for EAP-SIM passwd file Thanks Sid On Wed, Aug 12, 2015 at 12:19 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 11, 2015, at 11:38 PM, Siddharth Katragadda via Freeradius-Users < freeradius-users@lists.freeradius.org> wrote:
I had a question about EAP-SIM. We previously got EAP-SIM to work on the Free-radius version 2. But once we upgraded to 3.0, we saw the rlm_sim_files has been deprecated and now we need to use rlm_passwd.
Or anything else. The passwd module can read simple files, which is pretty much what sim_files did.
2. Changed passwd file under mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*User-Name:User-Password"
That won't work. You need to make sure that the data file is formatted in a way the "passwd" module likes. Then, ensure that the "format" string for the passwd module reads the SIM triplets from the correct field.
Here, you've told it to "look up User-Name, and get the User-Password" from the file. That clearly isn't what you want.
So... read the passwd documentation, and fix the "format" line to have the names of the SIM triplet attributes.
Alan DeKok.
Hi Alan, Anything on this? Thanks SId On Wed, Aug 12, 2015 at 12:25 PM, Siddharth Katragadda < siddharthk@google.com> wrote:
Hi Alan,
For the format, I did try this:
format = "*IMSI:RAND:SRES:KC"
I assumed for EAP-SIM, the IMSI is the key attribute and the triplet of RAND:SRES:KC will be the password??
I get the following error: rlm_passwd: unable to resolve attribute IMSI
I tried to lookup the corr. attribute names for IMSI, Rand, Sres, KC on the Freeradius Attribute RFC but couldn't find them: http://freeradius.org/rfc/attributes.html
Can you please help me define the "format" for EAP-SIM passwd file
Thanks Sid
On Wed, Aug 12, 2015 at 12:19 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 11, 2015, at 11:38 PM, Siddharth Katragadda via Freeradius-Users < freeradius-users@lists.freeradius.org> wrote:
I had a question about EAP-SIM. We previously got EAP-SIM to work on the Free-radius version 2. But once we upgraded to 3.0, we saw the rlm_sim_files has been deprecated and now we need to use rlm_passwd.
Or anything else. The passwd module can read simple files, which is pretty much what sim_files did.
2. Changed passwd file under mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*User-Name:User-Password"
That won't work. You need to make sure that the data file is formatted in a way the "passwd" module likes. Then, ensure that the "format" string for the passwd module reads the SIM triplets from the correct field.
Here, you've told it to "look up User-Name, and get the User-Password" from the file. That clearly isn't what you want.
So... read the passwd documentation, and fix the "format" line to have the names of the SIM triplet attributes.
Alan DeKok.
please don’t send email On Aug 14, 2015, at 00:49, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan, Anything on this? Thanks SId
On Wed, Aug 12, 2015 at 12:25 PM, Siddharth Katragadda < siddharthk@google.com> wrote:
Hi Alan,
For the format, I did try this:
format = "*IMSI:RAND:SRES:KC"
I assumed for EAP-SIM, the IMSI is the key attribute and the triplet of RAND:SRES:KC will be the password??
I get the following error: rlm_passwd: unable to resolve attribute IMSI
I tried to lookup the corr. attribute names for IMSI, Rand, Sres, KC on the Freeradius Attribute RFC but couldn't find them: http://freeradius.org/rfc/attributes.html
Can you please help me define the "format" for EAP-SIM passwd file
Thanks Sid
On Wed, Aug 12, 2015 at 12:19 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 11, 2015, at 11:38 PM, Siddharth Katragadda via Freeradius-Users < freeradius-users@lists.freeradius.org> wrote: I had a question about EAP-SIM. We previously got EAP-SIM to work on the Free-radius version 2. But once we upgraded to 3.0, we saw the rlm_sim_files has been deprecated and now we need to use rlm_passwd.
Or anything else. The passwd module can read simple files, which is pretty much what sim_files did.
2. Changed passwd file under mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*User-Name:User-Password"
That won't work. You need to make sure that the data file is formatted in a way the "passwd" module likes. Then, ensure that the "format" string for the passwd module reads the SIM triplets from the correct field.
Here, you've told it to "look up User-Name, and get the User-Password" from the file. That clearly isn't what you want.
So... read the passwd documentation, and fix the "format" line to have the names of the SIM triplet attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 14, 2015, at 00:49, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan, Anything on this? Thanks SId
On Wed, Aug 12, 2015 at 12:25 PM, Siddharth Katragadda < siddharthk@google.com> wrote:
Hi Alan,
For the format, I did try this:
format = "*IMSI:RAND:SRES:KC"
I assumed for EAP-SIM, the IMSI is the key attribute and the triplet of RAND:SRES:KC will be the password??
I get the following error: rlm_passwd: unable to resolve attribute IMSI
I tried to lookup the corr. attribute names for IMSI, Rand, Sres, KC on the Freeradius Attribute RFC but couldn't find them: http://freeradius.org/rfc/attributes.html
Can you please help me define the "format" for EAP-SIM passwd file
Thanks Sid
On Wed, Aug 12, 2015 at 12:19 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 11, 2015, at 11:38 PM, Siddharth Katragadda via Freeradius-Users < freeradius-users@lists.freeradius.org> wrote: I had a question about EAP-SIM. We previously got EAP-SIM to work on the Free-radius version 2. But once we upgraded to 3.0, we saw the rlm_sim_files has been deprecated and now we need to use rlm_passwd.
Or anything else. The passwd module can read simple files, which is pretty much what sim_files did.
2. Changed passwd file under mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*User-Name:User-Password"
That won't work. You need to make sure that the data file is formatted in a way the "passwd" module likes. Then, ensure that the "format" string for the passwd module reads the SIM triplets from the correct field.
Here, you've told it to "look up User-Name, and get the User-Password" from the file. That clearly isn't what you want.
So... read the passwd documentation, and fix the "format" line to have the names of the SIM triplet attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 14, 2015, at 00:49, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan, Anything on this? Thanks SId
On Wed, Aug 12, 2015 at 12:25 PM, Siddharth Katragadda < siddharthk@google.com> wrote:
Hi Alan,
For the format, I did try this:
format = "*IMSI:RAND:SRES:KC"
I assumed for EAP-SIM, the IMSI is the key attribute and the triplet of RAND:SRES:KC will be the password??
I get the following error: rlm_passwd: unable to resolve attribute IMSI
I tried to lookup the corr. attribute names for IMSI, Rand, Sres, KC on the Freeradius Attribute RFC but couldn't find them: http://freeradius.org/rfc/attributes.html
Can you please help me define the "format" for EAP-SIM passwd file
Thanks Sid
On Wed, Aug 12, 2015 at 12:19 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 11, 2015, at 11:38 PM, Siddharth Katragadda via Freeradius-Users < freeradius-users@lists.freeradius.org> wrote: I had a question about EAP-SIM. We previously got EAP-SIM to work on the Free-radius version 2. But once we upgraded to 3.0, we saw the rlm_sim_files has been deprecated and now we need to use rlm_passwd.
Or anything else. The passwd module can read simple files, which is pretty much what sim_files did.
2. Changed passwd file under mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*User-Name:User-Password"
That won't work. You need to make sure that the data file is formatted in a way the "passwd" module likes. Then, ensure that the "format" string for the passwd module reads the SIM triplets from the correct field.
Here, you've told it to "look up User-Name, and get the User-Password" from the file. That clearly isn't what you want.
So... read the passwd documentation, and fix the "format" line to have the names of the SIM triplet attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 14, 2015, at 00:49, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan, Anything on this? Thanks SId
On Wed, Aug 12, 2015 at 12:25 PM, Siddharth Katragadda < siddharthk@google.com> wrote:
Hi Alan,
For the format, I did try this:
format = "*IMSI:RAND:SRES:KC"
I assumed for EAP-SIM, the IMSI is the key attribute and the triplet of RAND:SRES:KC will be the password??
I get the following error: rlm_passwd: unable to resolve attribute IMSI
I tried to lookup the corr. attribute names for IMSI, Rand, Sres, KC on the Freeradius Attribute RFC but couldn't find them: http://freeradius.org/rfc/attributes.html
Can you please help me define the "format" for EAP-SIM passwd file
Thanks Sid
On Wed, Aug 12, 2015 at 12:19 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 11, 2015, at 11:38 PM, Siddharth Katragadda via Freeradius-Users < freeradius-users@lists.freeradius.org> wrote: I had a question about EAP-SIM. We previously got EAP-SIM to work on the Free-radius version 2. But once we upgraded to 3.0, we saw the rlm_sim_files has been deprecated and now we need to use rlm_passwd.
Or anything else. The passwd module can read simple files, which is pretty much what sim_files did.
2. Changed passwd file under mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*User-Name:User-Password"
That won't work. You need to make sure that the data file is formatted in a way the "passwd" module likes. Then, ensure that the "format" string for the passwd module reads the SIM triplets from the correct field.
Here, you've told it to "look up User-Name, and get the User-Password" from the file. That clearly isn't what you want.
So... read the passwd documentation, and fix the "format" line to have the names of the SIM triplet attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 14, 2015, at 00:49, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan, Anything on this? Thanks SId
On Wed, Aug 12, 2015 at 12:25 PM, Siddharth Katragadda < siddharthk@google.com> wrote:
Hi Alan,
For the format, I did try this:
format = "*IMSI:RAND:SRES:KC"
I assumed for EAP-SIM, the IMSI is the key attribute and the triplet of RAND:SRES:KC will be the password??
I get the following error: rlm_passwd: unable to resolve attribute IMSI
I tried to lookup the corr. attribute names for IMSI, Rand, Sres, KC on the Freeradius Attribute RFC but couldn't find them: http://freeradius.org/rfc/attributes.html
Can you please help me define the "format" for EAP-SIM passwd file
Thanks Sid
On Wed, Aug 12, 2015 at 12:19 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 11, 2015, at 11:38 PM, Siddharth Katragadda via Freeradius-Users < freeradius-users@lists.freeradius.org> wrote: I had a question about EAP-SIM. We previously got EAP-SIM to work on the Free-radius version 2. But once we upgraded to 3.0, we saw the rlm_sim_files has been deprecated and now we need to use rlm_passwd.
Or anything else. The passwd module can read simple files, which is pretty much what sim_files did.
2. Changed passwd file under mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*User-Name:User-Password"
That won't work. You need to make sure that the data file is formatted in a way the "passwd" module likes. Then, ensure that the "format" string for the passwd module reads the SIM triplets from the correct field.
Here, you've told it to "look up User-Name, and get the User-Password" from the file. That clearly isn't what you want.
So... read the passwd documentation, and fix the "format" line to have the names of the SIM triplet attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote:
format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes. Alan DeKok.
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings: On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote:
format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
Hi Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings: *passwd file in mods-enabled:* passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" hash_size = 100 ignore_nislike = no allow_multiple_keys = no } *simtriplets.dat file (IMSI followed by 3 sets of triplets):* 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:2 ADE1426F93045258CCD7B9CF739CD51:CA1a6a73:44163dcd3063ee06:A7DB577E986F41e999981FE01E8E9351:9E0ec181:2B3182377B3d2e05:92F13B6BB93641b0914DD3D6DAAFB78C:9Ca5541a:767e395d867fa4b0 I get this error when I run the test. I'm using a phone with a test SIM in it (IMSI: 1001010123456789): eap: Expiring EAP session with state 0x4e4609474d431cf0 (37) eap: Finished EAP session with state 0x50b3a7b250b1a3eb (37) eap: Previous EAP request found for state 0x50b3a7b250b1a3eb, released from the list (37) eap: Peer sent packet with method EAP NAK (3) (37) eap: Found mutually acceptable type SIM (18) (37) eap: Calling submodule eap_sim to process data (37)* eap_sim: ERROR: EAP-SIM-RAND1 not found* (37) eap: ERROR: Failed starting EAP SIM (18) session. EAP sub-module failed (37) eap: Sending EAP Failure (code 4) ID 2 length 4 (37) eap: Failed in EAP select (37) [eap] = invalid (37) } # authenticate = invalid (37) Failed to authenticate the user (37) Using Post-Auth-Type Reject (37) # Executing group from file /usr/local/etc/raddb/sites-enabled/default (37) Post-Auth-Type REJECT { (37) attr_filter.access_reject: EXPAND %{User-Name} (37) attr_filter.access_reject: --> 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org (37) attr_filter.access_reject: Matched entry DEFAULT at line 18 (37) [attr_filter.access_reject] = updated (37) eap: Reply already contained an EAP-Message, not inserting EAP-Failure (37) [eap] = noop (37) policy remove_reply_message_if_eap { (37) if (&reply:EAP-Message && &reply:Reply-Message) { (37) if (&reply:EAP-Message && &reply:Reply-Message) -> FALSE (37) else { (37) [noop] = noop (37) } # else = noop (37) } # policy remove_reply_message_if_eap = noop (37) } # Post-Auth-Type REJECT = updated (37) Delaying response for 1.000000 seconds Waking up in 0.3 seconds. Waking up in 0.6 seconds. (37) <delay>: Sending delayed response (37) <delay>: Sent Access-Reject Id 91 from 192.168.1.98:1812 to 192.168.1.14:32768 length 44 I don't think the passwd file is being processed properly. Am I missing something? Thanks Sid On Fri, Aug 14, 2015 at 10:11 AM, Siddharth Katragadda < siddharthk@google.com> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote:
format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
On Aug 14, 2015, at 7:16 PM, Siddharth Katragadda <siddharthk@google.com> wrote:
Hi Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
passwd file in mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2"
That looks like it should work.
I get this error when I run the test. I'm using a phone with a test SIM in it (IMSI: 1001010123456789): eap: Expiring EAP session with state 0x4e4609474d431cf0 (37) eap: Finished EAP session with state 0x50b3a7b250b1a3eb
The debug output doesn't show it using the passwd module. Perhaps that's the problem. Alan DeKok.
Hi Alan, Any idea why the passwd module is not getting invoked. I did add "passwd" prior to the eap section in ..sites-enabled/default under authorize. Do I need to configure anything else for passwd module to get triggered. Thanks Sid On Sun, Aug 16, 2015 at 7:14 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 14, 2015, at 7:16 PM, Siddharth Katragadda <siddharthk@google.com> wrote:
Hi Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
passwd file in mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2"
That looks like it should work.
I get this error when I run the test. I'm using a phone with a test SIM in it (IMSI: 1001010123456789): eap: Expiring EAP session with state 0x4e4609474d431cf0 (37) eap: Finished EAP session with state 0x50b3a7b250b1a3eb
The debug output doesn't show it using the passwd module. Perhaps that's the problem.
Alan DeKok.
On Aug 17, 2015, at 10:38 PM, Siddharth Katragadda <siddharthk@google.com> wrote:
Any idea why the passwd module is not getting invoked. I did add "passwd" prior to the eap section in ..sites-enabled/default under authorize. Do I need to configure anything else for passwd module to get triggered.
Read the debug log. See what it does. It shouldn't be magic... Alan DeKok.
In the debug log, under authorize, I see: [passwd] = notfound I do have the passwd file under mods-enabled. Do I need to build/make the passwd module from the src code? Sid On Mon, Aug 17, 2015 at 1:40 PM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 17, 2015, at 10:38 PM, Siddharth Katragadda <siddharthk@google.com> wrote:
Any idea why the passwd module is not getting invoked. I did add "passwd" prior to the eap section in ..sites-enabled/default under authorize. Do I need to configure anything else for passwd module to get triggered.
Read the debug log. See what it does. It shouldn't be magic...
Alan DeKok.
On Aug 17, 2015, at 11:06 PM, Siddharth Katragadda <siddharthk@google.com> wrote:
In the debug log, under authorize, I see: [passwd] = not found
So.... the passwd module *is* being used, but it doesn't find any entry matching the key. That's simple enough. Alan DeKok.
Alan, The key works fine when we use rlm_sim_files (on freeradius 2.x): 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org And we are using the same SIM card that we used on freeraduys 2.x. So not sure why the key is not matching? I'm attaching the simtriplets we used on 3.x and 2.x Thanks Sid On Mon, Aug 17, 2015 at 2:22 PM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 17, 2015, at 11:06 PM, Siddharth Katragadda <siddharthk@google.com> wrote:
In the debug log, under authorize, I see: [passwd] = not found
So.... the passwd module *is* being used, but it doesn't find any entry matching the key.
That's simple enough.
Alan DeKok.
Hi Alan, Any help on this. I'm also attaching the debug log. I do have the correct username in my simtriplets.dat, so not sure why passwd is not finding it in the database? Thanks Sid On Mon, Aug 17, 2015 at 2:41 PM, Siddharth Katragadda <siddharthk@google.com
wrote:
Alan,
The key works fine when we use rlm_sim_files (on freeradius 2.x): 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org
And we are using the same SIM card that we used on freeraduys 2.x. So not sure why the key is not matching?
I'm attaching the simtriplets we used on 3.x and 2.x
Thanks Sid
On Mon, Aug 17, 2015 at 2:22 PM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 17, 2015, at 11:06 PM, Siddharth Katragadda <siddharthk@google.com> wrote:
In the debug log, under authorize, I see: [passwd] = not found
So.... the passwd module *is* being used, but it doesn't find any entry matching the key.
That's simple enough.
Alan DeKok.
Hi Alan Could you please confirm if anyone has gotten EAP-SIM to work with rlm_passwd?? So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x Thanks Sid On Tue, Aug 18, 2015 at 12:12 PM, Siddharth Katragadda < siddharthk@google.com> wrote:
Hi Alan, Any help on this. I'm also attaching the debug log. I do have the correct username in my simtriplets.dat, so not sure why passwd is not finding it in the database?
Thanks Sid
On Mon, Aug 17, 2015 at 2:41 PM, Siddharth Katragadda < siddharthk@google.com> wrote:
Alan,
The key works fine when we use rlm_sim_files (on freeradius 2.x): 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org
And we are using the same SIM card that we used on freeraduys 2.x. So not sure why the key is not matching?
I'm attaching the simtriplets we used on 3.x and 2.x
Thanks Sid
On Mon, Aug 17, 2015 at 2:22 PM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 17, 2015, at 11:06 PM, Siddharth Katragadda < siddharthk@google.com> wrote:
In the debug log, under authorize, I see: [passwd] = not found
So.... the passwd module *is* being used, but it doesn't find any entry matching the key.
That's simple enough.
Alan DeKok.
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote:
So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me. You've got passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... } which has 10 fields, but your simtriplets file only has 4 fields. The incoming request has User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound. Does, for example, format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1" work? But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do. Matthew -- Matthew Newton, Ph.D. <mcn4@le.ac.uk> Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right? I've attached the debug log, passwd and simtriplets.dat Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4?? Thanks Sid On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote:
So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote:
but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get: ... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ... That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes. You've trimmed the debug output, so I've no idea what version you are using to test against. You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop } e.g. (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE If you get --> instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file. Matthew -- Matthew Newton, Ph.D. <mcn4@le.ac.uk> Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
Hi Matthew, I tried adding this line as you suggested: if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} } I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}" Not sure if I messed up the syntax somewhere. Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45 Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote:
but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
On Tue, Aug 25, 2015 at 03:14:01PM -0700, Siddharth Katragadda wrote:
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
That's not what I suggested you added - that should be noop in there.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have.
I tested with 3.0.x HEAD. You could always try that, but it's pretty close to 3.0.9. Matthew
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk> Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
please don’t send email On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:27, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:27, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:27, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
What the hell is wrong with you guys? Regards ZUBAIR AYUB Thanks ________________________________ From: Freeradius-Users <freeradius-users-bounces+zubairayub=hotmail.com@lists.freeradius.org> on behalf of Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> Sent: Monday, November 19, 2018 5:18:31 PM To: Song Zou via Freeradius-Users Cc: Song Zou Subject: Re: Re: Re: EAP-sim using freeradius please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote: - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:21, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:21, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:21, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:21, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:21, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:21, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 26, 2015, at 06:14, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew,
I tried adding this line as you suggested:
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { EXPAND %{escape:%{control:EAP-Sim-Rand1}} }
I get this error: /usr/local/etc/raddb/sites-enabled/default[351]: Parse error after "control:EAP-Sim-Rand1": unexpected token "}"
Not sure if I messed up the syntax somewhere.
Also this the version of Freeradius we're using: radiusd: FreeRADIUS Version 3.0.9, for host x86_64-unknown-linux-gnu, built on Aug 7 2015 at 16:25:45
Could you please let me know if it;'s an issue with the version of radius we have. Thanks Sid
On Fri, Aug 21, 2015 at 2:37 PM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Fri, Aug 21, 2015 at 10:15:16AM -0700, Siddharth Katragadda wrote: but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
No idea: when I drop your simtriplets file and passwd config into a clean 3.0.x HEAD build here, then use radtest (so no eap) I get:
... (0) suffix: Checking for suffix after "@" (0) suffix: Looking up realm "wlan.mnc001.mcc001.3gppnetwork.org" for User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org" (0) suffix: No such realm "wlan.mnc001.mcc001.3gppnetwork.org" (0) [suffix] = noop (0) passwd: Added EAP-SIM-RAND1: '2ADE1426F93045258CCD7B9CF739CD51' to config (0) passwd: Added EAP-SIM-SRES1: 'CA1a6a73' to config (0) passwd: Added EAP-SIM-KC1: '44163dcd3063ee06' to config (0) passwd: Added EAP-SIM-RAND2: 'A7DB577E986F41e999981FE01E8E9351' to config (0) passwd: Added EAP-SIM-SRES2: '9E0ec181' to config (0) passwd: Added EAP-SIM-KC2: '2B3182377B3d2e05' to config (0) passwd: Added EAP-SIM-RAND3: '92F13B6BB93641b0914DD3D6DAAFB78C' to config (0) passwd: Added EAP-SIM-SRES3: '9Ca5541a' to config (0) passwd: Added EAP-SIM-KC3: '767e395d867fa4b0' to config (0) [passwd] = ok (0) eap: No EAP-Message, not doing EAP (0) [eap] = noop ...
That looks good enough to me - and checking the code, eap_sim just looks for eap-sim-rand1 in the control attributes.
You've trimmed the debug output, so I've no idea what version you are using to test against.
You could try adding something like this after your call to passwd to force a debug expansion and see what the value has actually been set to
if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { noop }
e.g.
(0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") { (0) EXPAND %{escape:%{control:EAP-Sim-Rand1}} (0) --> 0x3241444531343236463933303435323538434344374239434637333943443531 (0) if ("%{escape:%{control:EAP-Sim-Rand1}}" == "h") -> FALSE
If you get
-->
instead, then EAP-Sim-Rand1 wasn't set properly for some reason.
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Failing eyesight, dementia, or the fact that in your first e-mail there were only four fields in that file.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:25, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:25, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:25, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 22, 2015, at 01:15, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Matthew Thanks for the suggestion. I tried by changing the EAP-Sim-IMSI to User-Name - but I still get the eap_sim: ERROR: EAP-SIM-RAND1 not found Although the passwd file now says: [passwd] = ok
So it looks like passwd file was able to find the User-Name in simtriplets.dat, so it should have extracted the EAP-SIM-RAND1 etc from it right?
I've attached the debug log, passwd and simtriplets.dat
Btw, I did have 10 fields in the simtriplets.dat (delimited by colon). Why did you find only 4??
Thanks Sid
On Fri, Aug 21, 2015 at 3:29 AM, Matthew Newton <mcn4@leicester.ac.uk> wrote:
On Thu, Aug 20, 2015 at 05:12:00PM -0700, Siddharth Katragadda via Freeradius-Users wrote: So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
I don't do EAP-SIM, so these are only observations on things that don't look quite right to me.
You've got
passwd passwd { ... format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" ... }
which has 10 fields, but your simtriplets file only has 4 fields.
The incoming request has
User-Name = "1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org"
but does not have an EAP-Sim-IMSI attribute (I'm not sure if this should be encoded within the EAP-Message), which is why you're getting [passwd] = notfound.
Does, for example,
format = "*User-Name:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1"
work?
But, as I said - only things that look wrong to me, and I have no knowledge of EAP-SIM at all. This might be the wrong thing to do.
Matthew
-- Matthew Newton, Ph.D. <mcn4@le.ac.uk>
Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom
For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
On Aug 20, 2015, at 8:12 PM, Siddharth Katragadda <siddharthk@google.com> wrote:
Could you please confirm if anyone has gotten EAP-SIM to work with rlm_passwd??
rlm_passwd doesn't care about EAP-SIM, PAP, CHAP, or EAP-TTLS. It works on attributes. If it doesn't work, you probably have a configuration error. See Matthew's post.
So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
That's fine for them. Alan DeKok.
please don’t send email On Aug 21, 2015, at 08:12, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan Could you please confirm if anyone has gotten EAP-SIM to work with rlm_passwd?? So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
Thanks Sid
On Tue, Aug 18, 2015 at 12:12 PM, Siddharth Katragadda < siddharthk@google.com> wrote:
Hi Alan, Any help on this. I'm also attaching the debug log. I do have the correct username in my simtriplets.dat, so not sure why passwd is not finding it in the database?
Thanks Sid
On Mon, Aug 17, 2015 at 2:41 PM, Siddharth Katragadda < siddharthk@google.com> wrote:
Alan,
The key works fine when we use rlm_sim_files (on freeradius 2.x): 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org
And we are using the same SIM card that we used on freeraduys 2.x. So not sure why the key is not matching?
I'm attaching the simtriplets we used on 3.x and 2.x
Thanks Sid
On Mon, Aug 17, 2015 at 2:22 PM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 17, 2015, at 11:06 PM, Siddharth Katragadda < siddharthk@google.com> wrote: In the debug log, under authorize, I see: [passwd] = not found
So.... the passwd module *is* being used, but it doesn't find any entry matching the key.
That's simple enough.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 21, 2015, at 08:12, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan Could you please confirm if anyone has gotten EAP-SIM to work with rlm_passwd?? So far, most of the vendors we work with seem to be using rlm_sim_files on Freeradius 2.x
Thanks Sid
On Tue, Aug 18, 2015 at 12:12 PM, Siddharth Katragadda < siddharthk@google.com> wrote:
Hi Alan, Any help on this. I'm also attaching the debug log. I do have the correct username in my simtriplets.dat, so not sure why passwd is not finding it in the database?
Thanks Sid
On Mon, Aug 17, 2015 at 2:41 PM, Siddharth Katragadda < siddharthk@google.com> wrote:
Alan,
The key works fine when we use rlm_sim_files (on freeradius 2.x): 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org
And we are using the same SIM card that we used on freeraduys 2.x. So not sure why the key is not matching?
I'm attaching the simtriplets we used on 3.x and 2.x
Thanks Sid
On Mon, Aug 17, 2015 at 2:22 PM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 17, 2015, at 11:06 PM, Siddharth Katragadda < siddharthk@google.com> wrote: In the debug log, under authorize, I see: [passwd] = not found
So.... the passwd module *is* being used, but it doesn't find any entry matching the key.
That's simple enough.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 19, 2015, at 03:12, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan, Any help on this. I'm also attaching the debug log. I do have the correct username in my simtriplets.dat, so not sure why passwd is not finding it in the database?
Thanks Sid
On Mon, Aug 17, 2015 at 2:41 PM, Siddharth Katragadda <siddharthk@google.com wrote:
Alan,
The key works fine when we use rlm_sim_files (on freeradius 2.x): 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org
And we are using the same SIM card that we used on freeraduys 2.x. So not sure why the key is not matching?
I'm attaching the simtriplets we used on 3.x and 2.x
Thanks Sid
On Mon, Aug 17, 2015 at 2:22 PM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 17, 2015, at 11:06 PM, Siddharth Katragadda <siddharthk@google.com> wrote: In the debug log, under authorize, I see: [passwd] = not found
So.... the passwd module *is* being used, but it doesn't find any entry matching the key.
That's simple enough.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 19, 2015, at 03:12, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan, Any help on this. I'm also attaching the debug log. I do have the correct username in my simtriplets.dat, so not sure why passwd is not finding it in the database?
Thanks Sid
On Mon, Aug 17, 2015 at 2:41 PM, Siddharth Katragadda <siddharthk@google.com wrote:
Alan,
The key works fine when we use rlm_sim_files (on freeradius 2.x): 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org
And we are using the same SIM card that we used on freeraduys 2.x. So not sure why the key is not matching?
I'm attaching the simtriplets we used on 3.x and 2.x
Thanks Sid
On Mon, Aug 17, 2015 at 2:22 PM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 17, 2015, at 11:06 PM, Siddharth Katragadda <siddharthk@google.com> wrote: In the debug log, under authorize, I see: [passwd] = not found
So.... the passwd module *is* being used, but it doesn't find any entry matching the key.
That's simple enough.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 18, 2015, at 05:41, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan,
The key works fine when we use rlm_sim_files (on freeradius 2.x): 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org
And we are using the same SIM card that we used on freeraduys 2.x. So not sure why the key is not matching?
I'm attaching the simtriplets we used on 3.x and 2.x
Thanks Sid
On Mon, Aug 17, 2015 at 2:22 PM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 17, 2015, at 11:06 PM, Siddharth Katragadda <siddharthk@google.com> wrote: In the debug log, under authorize, I see: [passwd] = not found
So.... the passwd module *is* being used, but it doesn't find any entry matching the key.
That's simple enough.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 18, 2015, at 05:41, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan,
The key works fine when we use rlm_sim_files (on freeradius 2.x): 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org
And we are using the same SIM card that we used on freeraduys 2.x. So not sure why the key is not matching?
I'm attaching the simtriplets we used on 3.x and 2.x
Thanks Sid
On Mon, Aug 17, 2015 at 2:22 PM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 17, 2015, at 11:06 PM, Siddharth Katragadda <siddharthk@google.com> wrote: In the debug log, under authorize, I see: [passwd] = not found
So.... the passwd module *is* being used, but it doesn't find any entry matching the key.
That's simple enough.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 18, 2015, at 05:41, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan,
The key works fine when we use rlm_sim_files (on freeradius 2.x): 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org
And we are using the same SIM card that we used on freeraduys 2.x. So not sure why the key is not matching?
I'm attaching the simtriplets we used on 3.x and 2.x
Thanks Sid
On Mon, Aug 17, 2015 at 2:22 PM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 17, 2015, at 11:06 PM, Siddharth Katragadda <siddharthk@google.com> wrote: In the debug log, under authorize, I see: [passwd] = not found
So.... the passwd module *is* being used, but it doesn't find any entry matching the key.
That's simple enough.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 18, 2015, at 05:41, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan,
The key works fine when we use rlm_sim_files (on freeradius 2.x): 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org
And we are using the same SIM card that we used on freeraduys 2.x. So not sure why the key is not matching?
I'm attaching the simtriplets we used on 3.x and 2.x
Thanks Sid
On Mon, Aug 17, 2015 at 2:22 PM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 17, 2015, at 11:06 PM, Siddharth Katragadda <siddharthk@google.com> wrote: In the debug log, under authorize, I see: [passwd] = not found
So.... the passwd module *is* being used, but it doesn't find any entry matching the key.
That's simple enough.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 18, 2015, at 05:41, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan,
The key works fine when we use rlm_sim_files (on freeradius 2.x): 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org
And we are using the same SIM card that we used on freeraduys 2.x. So not sure why the key is not matching?
I'm attaching the simtriplets we used on 3.x and 2.x
Thanks Sid
On Mon, Aug 17, 2015 at 2:22 PM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 17, 2015, at 11:06 PM, Siddharth Katragadda <siddharthk@google.com> wrote: In the debug log, under authorize, I see: [passwd] = not found
So.... the passwd module *is* being used, but it doesn't find any entry matching the key.
That's simple enough.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 18, 2015, at 05:06, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
In the debug log, under authorize, I see: [passwd] = notfound
I do have the passwd file under mods-enabled. Do I need to build/make the passwd module from the src code?
Sid
On Mon, Aug 17, 2015 at 1:40 PM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 17, 2015, at 10:38 PM, Siddharth Katragadda <siddharthk@google.com> wrote: Any idea why the passwd module is not getting invoked. I did add "passwd" prior to the eap section in ..sites-enabled/default under authorize. Do I need to configure anything else for passwd module to get triggered.
Read the debug log. See what it does. It shouldn't be magic...
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 18, 2015, at 05:06, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
In the debug log, under authorize, I see: [passwd] = notfound
I do have the passwd file under mods-enabled. Do I need to build/make the passwd module from the src code?
Sid
On Mon, Aug 17, 2015 at 1:40 PM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 17, 2015, at 10:38 PM, Siddharth Katragadda <siddharthk@google.com> wrote: Any idea why the passwd module is not getting invoked. I did add "passwd" prior to the eap section in ..sites-enabled/default under authorize. Do I need to configure anything else for passwd module to get triggered.
Read the debug log. See what it does. It shouldn't be magic...
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 18, 2015, at 05:06, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
In the debug log, under authorize, I see: [passwd] = notfound
I do have the passwd file under mods-enabled. Do I need to build/make the passwd module from the src code?
Sid
On Mon, Aug 17, 2015 at 1:40 PM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 17, 2015, at 10:38 PM, Siddharth Katragadda <siddharthk@google.com> wrote: Any idea why the passwd module is not getting invoked. I did add "passwd" prior to the eap section in ..sites-enabled/default under authorize. Do I need to configure anything else for passwd module to get triggered.
Read the debug log. See what it does. It shouldn't be magic...
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 18, 2015, at 05:06, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
In the debug log, under authorize, I see: [passwd] = notfound
I do have the passwd file under mods-enabled. Do I need to build/make the passwd module from the src code?
Sid
On Mon, Aug 17, 2015 at 1:40 PM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 17, 2015, at 10:38 PM, Siddharth Katragadda <siddharthk@google.com> wrote: Any idea why the passwd module is not getting invoked. I did add "passwd" prior to the eap section in ..sites-enabled/default under authorize. Do I need to configure anything else for passwd module to get triggered.
Read the debug log. See what it does. It shouldn't be magic...
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 18, 2015, at 05:06, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
In the debug log, under authorize, I see: [passwd] = notfound
I do have the passwd file under mods-enabled. Do I need to build/make the passwd module from the src code?
Sid
On Mon, Aug 17, 2015 at 1:40 PM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 17, 2015, at 10:38 PM, Siddharth Katragadda <siddharthk@google.com> wrote: Any idea why the passwd module is not getting invoked. I did add "passwd" prior to the eap section in ..sites-enabled/default under authorize. Do I need to configure anything else for passwd module to get triggered.
Read the debug log. See what it does. It shouldn't be magic...
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 18, 2015, at 04:38, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan,
Any idea why the passwd module is not getting invoked. I did add "passwd" prior to the eap section in ..sites-enabled/default under authorize. Do I need to configure anything else for passwd module to get triggered. Thanks Sid
On Sun, Aug 16, 2015 at 7:14 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 14, 2015, at 7:16 PM, Siddharth Katragadda <siddharthk@google.com> wrote:
Hi Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
passwd file in mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2"
That looks like it should work.
I get this error when I run the test. I'm using a phone with a test SIM in it (IMSI: 1001010123456789): eap: Expiring EAP session with state 0x4e4609474d431cf0 (37) eap: Finished EAP session with state 0x50b3a7b250b1a3eb
The debug output doesn't show it using the passwd module. Perhaps that's the problem.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 18, 2015, at 04:38, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan,
Any idea why the passwd module is not getting invoked. I did add "passwd" prior to the eap section in ..sites-enabled/default under authorize. Do I need to configure anything else for passwd module to get triggered. Thanks Sid
On Sun, Aug 16, 2015 at 7:14 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 14, 2015, at 7:16 PM, Siddharth Katragadda <siddharthk@google.com> wrote:
Hi Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
passwd file in mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2"
That looks like it should work.
I get this error when I run the test. I'm using a phone with a test SIM in it (IMSI: 1001010123456789): eap: Expiring EAP session with state 0x4e4609474d431cf0 (37) eap: Finished EAP session with state 0x50b3a7b250b1a3eb
The debug output doesn't show it using the passwd module. Perhaps that's the problem.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 18, 2015, at 04:38, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan,
Any idea why the passwd module is not getting invoked. I did add "passwd" prior to the eap section in ..sites-enabled/default under authorize. Do I need to configure anything else for passwd module to get triggered. Thanks Sid
On Sun, Aug 16, 2015 at 7:14 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 14, 2015, at 7:16 PM, Siddharth Katragadda <siddharthk@google.com> wrote:
Hi Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
passwd file in mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2"
That looks like it should work.
I get this error when I run the test. I'm using a phone with a test SIM in it (IMSI: 1001010123456789): eap: Expiring EAP session with state 0x4e4609474d431cf0 (37) eap: Finished EAP session with state 0x50b3a7b250b1a3eb
The debug output doesn't show it using the passwd module. Perhaps that's the problem.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 18, 2015, at 04:38, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan,
Any idea why the passwd module is not getting invoked. I did add "passwd" prior to the eap section in ..sites-enabled/default under authorize. Do I need to configure anything else for passwd module to get triggered. Thanks Sid
On Sun, Aug 16, 2015 at 7:14 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 14, 2015, at 7:16 PM, Siddharth Katragadda <siddharthk@google.com> wrote:
Hi Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
passwd file in mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2"
That looks like it should work.
I get this error when I run the test. I'm using a phone with a test SIM in it (IMSI: 1001010123456789): eap: Expiring EAP session with state 0x4e4609474d431cf0 (37) eap: Finished EAP session with state 0x50b3a7b250b1a3eb
The debug output doesn't show it using the passwd module. Perhaps that's the problem.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 18, 2015, at 04:38, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan,
Any idea why the passwd module is not getting invoked. I did add "passwd" prior to the eap section in ..sites-enabled/default under authorize. Do I need to configure anything else for passwd module to get triggered. Thanks Sid
On Sun, Aug 16, 2015 at 7:14 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 14, 2015, at 7:16 PM, Siddharth Katragadda <siddharthk@google.com> wrote:
Hi Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
passwd file in mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2"
That looks like it should work.
I get this error when I run the test. I'm using a phone with a test SIM in it (IMSI: 1001010123456789): eap: Expiring EAP session with state 0x4e4609474d431cf0 (37) eap: Finished EAP session with state 0x50b3a7b250b1a3eb
The debug output doesn't show it using the passwd module. Perhaps that's the problem.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 15, 2015, at 01:16, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
*passwd file in mods-enabled:* passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" hash_size = 100 ignore_nislike = no allow_multiple_keys = no }
*simtriplets.dat file (IMSI followed by 3 sets of triplets):* 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:2 ADE1426F93045258CCD7B9CF739CD51:CA1a6a73:44163dcd3063ee06:A7DB577E986F41e999981FE01E8E9351:9E0ec181:2B3182377B3d2e05:92F13B6BB93641b0914DD3D6DAAFB78C:9Ca5541a:767e395d867fa4b0
I get this error when I run the test. I'm using a phone with a test SIM in it (IMSI: 1001010123456789): eap: Expiring EAP session with state 0x4e4609474d431cf0 (37) eap: Finished EAP session with state 0x50b3a7b250b1a3eb (37) eap: Previous EAP request found for state 0x50b3a7b250b1a3eb, released from the list (37) eap: Peer sent packet with method EAP NAK (3) (37) eap: Found mutually acceptable type SIM (18) (37) eap: Calling submodule eap_sim to process data (37)* eap_sim: ERROR: EAP-SIM-RAND1 not found* (37) eap: ERROR: Failed starting EAP SIM (18) session. EAP sub-module failed (37) eap: Sending EAP Failure (code 4) ID 2 length 4 (37) eap: Failed in EAP select (37) [eap] = invalid (37) } # authenticate = invalid (37) Failed to authenticate the user (37) Using Post-Auth-Type Reject (37) # Executing group from file /usr/local/etc/raddb/sites-enabled/default (37) Post-Auth-Type REJECT { (37) attr_filter.access_reject: EXPAND %{User-Name} (37) attr_filter.access_reject: --> 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org (37) attr_filter.access_reject: Matched entry DEFAULT at line 18 (37) [attr_filter.access_reject] = updated (37) eap: Reply already contained an EAP-Message, not inserting EAP-Failure (37) [eap] = noop (37) policy remove_reply_message_if_eap { (37) if (&reply:EAP-Message && &reply:Reply-Message) { (37) if (&reply:EAP-Message && &reply:Reply-Message) -> FALSE (37) else { (37) [noop] = noop (37) } # else = noop (37) } # policy remove_reply_message_if_eap = noop (37) } # Post-Auth-Type REJECT = updated (37) Delaying response for 1.000000 seconds Waking up in 0.3 seconds. Waking up in 0.6 seconds. (37) <delay>: Sending delayed response (37) <delay>: Sent Access-Reject Id 91 from 192.168.1.98:1812 to 192.168.1.14:32768 length 44
I don't think the passwd file is being processed properly. Am I missing something?
Thanks Sid
On Fri, Aug 14, 2015 at 10:11 AM, Siddharth Katragadda < siddharthk@google.com> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:16, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
*passwd file in mods-enabled:* passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" hash_size = 100 ignore_nislike = no allow_multiple_keys = no }
*simtriplets.dat file (IMSI followed by 3 sets of triplets):* 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:2 ADE1426F93045258CCD7B9CF739CD51:CA1a6a73:44163dcd3063ee06:A7DB577E986F41e999981FE01E8E9351:9E0ec181:2B3182377B3d2e05:92F13B6BB93641b0914DD3D6DAAFB78C:9Ca5541a:767e395d867fa4b0
I get this error when I run the test. I'm using a phone with a test SIM in it (IMSI: 1001010123456789): eap: Expiring EAP session with state 0x4e4609474d431cf0 (37) eap: Finished EAP session with state 0x50b3a7b250b1a3eb (37) eap: Previous EAP request found for state 0x50b3a7b250b1a3eb, released from the list (37) eap: Peer sent packet with method EAP NAK (3) (37) eap: Found mutually acceptable type SIM (18) (37) eap: Calling submodule eap_sim to process data (37)* eap_sim: ERROR: EAP-SIM-RAND1 not found* (37) eap: ERROR: Failed starting EAP SIM (18) session. EAP sub-module failed (37) eap: Sending EAP Failure (code 4) ID 2 length 4 (37) eap: Failed in EAP select (37) [eap] = invalid (37) } # authenticate = invalid (37) Failed to authenticate the user (37) Using Post-Auth-Type Reject (37) # Executing group from file /usr/local/etc/raddb/sites-enabled/default (37) Post-Auth-Type REJECT { (37) attr_filter.access_reject: EXPAND %{User-Name} (37) attr_filter.access_reject: --> 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org (37) attr_filter.access_reject: Matched entry DEFAULT at line 18 (37) [attr_filter.access_reject] = updated (37) eap: Reply already contained an EAP-Message, not inserting EAP-Failure (37) [eap] = noop (37) policy remove_reply_message_if_eap { (37) if (&reply:EAP-Message && &reply:Reply-Message) { (37) if (&reply:EAP-Message && &reply:Reply-Message) -> FALSE (37) else { (37) [noop] = noop (37) } # else = noop (37) } # policy remove_reply_message_if_eap = noop (37) } # Post-Auth-Type REJECT = updated (37) Delaying response for 1.000000 seconds Waking up in 0.3 seconds. Waking up in 0.6 seconds. (37) <delay>: Sending delayed response (37) <delay>: Sent Access-Reject Id 91 from 192.168.1.98:1812 to 192.168.1.14:32768 length 44
I don't think the passwd file is being processed properly. Am I missing something?
Thanks Sid
On Fri, Aug 14, 2015 at 10:11 AM, Siddharth Katragadda < siddharthk@google.com> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:16, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
*passwd file in mods-enabled:* passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" hash_size = 100 ignore_nislike = no allow_multiple_keys = no }
*simtriplets.dat file (IMSI followed by 3 sets of triplets):* 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:2 ADE1426F93045258CCD7B9CF739CD51:CA1a6a73:44163dcd3063ee06:A7DB577E986F41e999981FE01E8E9351:9E0ec181:2B3182377B3d2e05:92F13B6BB93641b0914DD3D6DAAFB78C:9Ca5541a:767e395d867fa4b0
I get this error when I run the test. I'm using a phone with a test SIM in it (IMSI: 1001010123456789): eap: Expiring EAP session with state 0x4e4609474d431cf0 (37) eap: Finished EAP session with state 0x50b3a7b250b1a3eb (37) eap: Previous EAP request found for state 0x50b3a7b250b1a3eb, released from the list (37) eap: Peer sent packet with method EAP NAK (3) (37) eap: Found mutually acceptable type SIM (18) (37) eap: Calling submodule eap_sim to process data (37)* eap_sim: ERROR: EAP-SIM-RAND1 not found* (37) eap: ERROR: Failed starting EAP SIM (18) session. EAP sub-module failed (37) eap: Sending EAP Failure (code 4) ID 2 length 4 (37) eap: Failed in EAP select (37) [eap] = invalid (37) } # authenticate = invalid (37) Failed to authenticate the user (37) Using Post-Auth-Type Reject (37) # Executing group from file /usr/local/etc/raddb/sites-enabled/default (37) Post-Auth-Type REJECT { (37) attr_filter.access_reject: EXPAND %{User-Name} (37) attr_filter.access_reject: --> 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org (37) attr_filter.access_reject: Matched entry DEFAULT at line 18 (37) [attr_filter.access_reject] = updated (37) eap: Reply already contained an EAP-Message, not inserting EAP-Failure (37) [eap] = noop (37) policy remove_reply_message_if_eap { (37) if (&reply:EAP-Message && &reply:Reply-Message) { (37) if (&reply:EAP-Message && &reply:Reply-Message) -> FALSE (37) else { (37) [noop] = noop (37) } # else = noop (37) } # policy remove_reply_message_if_eap = noop (37) } # Post-Auth-Type REJECT = updated (37) Delaying response for 1.000000 seconds Waking up in 0.3 seconds. Waking up in 0.6 seconds. (37) <delay>: Sending delayed response (37) <delay>: Sent Access-Reject Id 91 from 192.168.1.98:1812 to 192.168.1.14:32768 length 44
I don't think the passwd file is being processed properly. Am I missing something?
Thanks Sid
On Fri, Aug 14, 2015 at 10:11 AM, Siddharth Katragadda < siddharthk@google.com> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:26, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:16, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
*passwd file in mods-enabled:* passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" hash_size = 100 ignore_nislike = no allow_multiple_keys = no }
*simtriplets.dat file (IMSI followed by 3 sets of triplets):* 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:2 ADE1426F93045258CCD7B9CF739CD51:CA1a6a73:44163dcd3063ee06:A7DB577E986F41e999981FE01E8E9351:9E0ec181:2B3182377B3d2e05:92F13B6BB93641b0914DD3D6DAAFB78C:9Ca5541a:767e395d867fa4b0
I get this error when I run the test. I'm using a phone with a test SIM in it (IMSI: 1001010123456789): eap: Expiring EAP session with state 0x4e4609474d431cf0 (37) eap: Finished EAP session with state 0x50b3a7b250b1a3eb (37) eap: Previous EAP request found for state 0x50b3a7b250b1a3eb, released from the list (37) eap: Peer sent packet with method EAP NAK (3) (37) eap: Found mutually acceptable type SIM (18) (37) eap: Calling submodule eap_sim to process data (37)* eap_sim: ERROR: EAP-SIM-RAND1 not found* (37) eap: ERROR: Failed starting EAP SIM (18) session. EAP sub-module failed (37) eap: Sending EAP Failure (code 4) ID 2 length 4 (37) eap: Failed in EAP select (37) [eap] = invalid (37) } # authenticate = invalid (37) Failed to authenticate the user (37) Using Post-Auth-Type Reject (37) # Executing group from file /usr/local/etc/raddb/sites-enabled/default (37) Post-Auth-Type REJECT { (37) attr_filter.access_reject: EXPAND %{User-Name} (37) attr_filter.access_reject: --> 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org (37) attr_filter.access_reject: Matched entry DEFAULT at line 18 (37) [attr_filter.access_reject] = updated (37) eap: Reply already contained an EAP-Message, not inserting EAP-Failure (37) [eap] = noop (37) policy remove_reply_message_if_eap { (37) if (&reply:EAP-Message && &reply:Reply-Message) { (37) if (&reply:EAP-Message && &reply:Reply-Message) -> FALSE (37) else { (37) [noop] = noop (37) } # else = noop (37) } # policy remove_reply_message_if_eap = noop (37) } # Post-Auth-Type REJECT = updated (37) Delaying response for 1.000000 seconds Waking up in 0.3 seconds. Waking up in 0.6 seconds. (37) <delay>: Sending delayed response (37) <delay>: Sent Access-Reject Id 91 from 192.168.1.98:1812 to 192.168.1.14:32768 length 44
I don't think the passwd file is being processed properly. Am I missing something?
Thanks Sid
On Fri, Aug 14, 2015 at 10:11 AM, Siddharth Katragadda < siddharthk@google.com> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:26, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:16, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
*passwd file in mods-enabled:* passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" hash_size = 100 ignore_nislike = no allow_multiple_keys = no }
*simtriplets.dat file (IMSI followed by 3 sets of triplets):* 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:2 ADE1426F93045258CCD7B9CF739CD51:CA1a6a73:44163dcd3063ee06:A7DB577E986F41e999981FE01E8E9351:9E0ec181:2B3182377B3d2e05:92F13B6BB93641b0914DD3D6DAAFB78C:9Ca5541a:767e395d867fa4b0
I get this error when I run the test. I'm using a phone with a test SIM in it (IMSI: 1001010123456789): eap: Expiring EAP session with state 0x4e4609474d431cf0 (37) eap: Finished EAP session with state 0x50b3a7b250b1a3eb (37) eap: Previous EAP request found for state 0x50b3a7b250b1a3eb, released from the list (37) eap: Peer sent packet with method EAP NAK (3) (37) eap: Found mutually acceptable type SIM (18) (37) eap: Calling submodule eap_sim to process data (37)* eap_sim: ERROR: EAP-SIM-RAND1 not found* (37) eap: ERROR: Failed starting EAP SIM (18) session. EAP sub-module failed (37) eap: Sending EAP Failure (code 4) ID 2 length 4 (37) eap: Failed in EAP select (37) [eap] = invalid (37) } # authenticate = invalid (37) Failed to authenticate the user (37) Using Post-Auth-Type Reject (37) # Executing group from file /usr/local/etc/raddb/sites-enabled/default (37) Post-Auth-Type REJECT { (37) attr_filter.access_reject: EXPAND %{User-Name} (37) attr_filter.access_reject: --> 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org (37) attr_filter.access_reject: Matched entry DEFAULT at line 18 (37) [attr_filter.access_reject] = updated (37) eap: Reply already contained an EAP-Message, not inserting EAP-Failure (37) [eap] = noop (37) policy remove_reply_message_if_eap { (37) if (&reply:EAP-Message && &reply:Reply-Message) { (37) if (&reply:EAP-Message && &reply:Reply-Message) -> FALSE (37) else { (37) [noop] = noop (37) } # else = noop (37) } # policy remove_reply_message_if_eap = noop (37) } # Post-Auth-Type REJECT = updated (37) Delaying response for 1.000000 seconds Waking up in 0.3 seconds. Waking up in 0.6 seconds. (37) <delay>: Sending delayed response (37) <delay>: Sent Access-Reject Id 91 from 192.168.1.98:1812 to 192.168.1.14:32768 length 44
I don't think the passwd file is being processed properly. Am I missing something?
Thanks Sid
On Fri, Aug 14, 2015 at 10:11 AM, Siddharth Katragadda < siddharthk@google.com> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:26, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:16, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
*passwd file in mods-enabled:* passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" hash_size = 100 ignore_nislike = no allow_multiple_keys = no }
*simtriplets.dat file (IMSI followed by 3 sets of triplets):* 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:2 ADE1426F93045258CCD7B9CF739CD51:CA1a6a73:44163dcd3063ee06:A7DB577E986F41e999981FE01E8E9351:9E0ec181:2B3182377B3d2e05:92F13B6BB93641b0914DD3D6DAAFB78C:9Ca5541a:767e395d867fa4b0
I get this error when I run the test. I'm using a phone with a test SIM in it (IMSI: 1001010123456789): eap: Expiring EAP session with state 0x4e4609474d431cf0 (37) eap: Finished EAP session with state 0x50b3a7b250b1a3eb (37) eap: Previous EAP request found for state 0x50b3a7b250b1a3eb, released from the list (37) eap: Peer sent packet with method EAP NAK (3) (37) eap: Found mutually acceptable type SIM (18) (37) eap: Calling submodule eap_sim to process data (37)* eap_sim: ERROR: EAP-SIM-RAND1 not found* (37) eap: ERROR: Failed starting EAP SIM (18) session. EAP sub-module failed (37) eap: Sending EAP Failure (code 4) ID 2 length 4 (37) eap: Failed in EAP select (37) [eap] = invalid (37) } # authenticate = invalid (37) Failed to authenticate the user (37) Using Post-Auth-Type Reject (37) # Executing group from file /usr/local/etc/raddb/sites-enabled/default (37) Post-Auth-Type REJECT { (37) attr_filter.access_reject: EXPAND %{User-Name} (37) attr_filter.access_reject: --> 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org (37) attr_filter.access_reject: Matched entry DEFAULT at line 18 (37) [attr_filter.access_reject] = updated (37) eap: Reply already contained an EAP-Message, not inserting EAP-Failure (37) [eap] = noop (37) policy remove_reply_message_if_eap { (37) if (&reply:EAP-Message && &reply:Reply-Message) { (37) if (&reply:EAP-Message && &reply:Reply-Message) -> FALSE (37) else { (37) [noop] = noop (37) } # else = noop (37) } # policy remove_reply_message_if_eap = noop (37) } # Post-Auth-Type REJECT = updated (37) Delaying response for 1.000000 seconds Waking up in 0.3 seconds. Waking up in 0.6 seconds. (37) <delay>: Sending delayed response (37) <delay>: Sent Access-Reject Id 91 from 192.168.1.98:1812 to 192.168.1.14:32768 length 44
I don't think the passwd file is being processed properly. Am I missing something?
Thanks Sid
On Fri, Aug 14, 2015 at 10:11 AM, Siddharth Katragadda < siddharthk@google.com> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:16, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
*passwd file in mods-enabled:* passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" hash_size = 100 ignore_nislike = no allow_multiple_keys = no }
*simtriplets.dat file (IMSI followed by 3 sets of triplets):* 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:2 ADE1426F93045258CCD7B9CF739CD51:CA1a6a73:44163dcd3063ee06:A7DB577E986F41e999981FE01E8E9351:9E0ec181:2B3182377B3d2e05:92F13B6BB93641b0914DD3D6DAAFB78C:9Ca5541a:767e395d867fa4b0
I get this error when I run the test. I'm using a phone with a test SIM in it (IMSI: 1001010123456789): eap: Expiring EAP session with state 0x4e4609474d431cf0 (37) eap: Finished EAP session with state 0x50b3a7b250b1a3eb (37) eap: Previous EAP request found for state 0x50b3a7b250b1a3eb, released from the list (37) eap: Peer sent packet with method EAP NAK (3) (37) eap: Found mutually acceptable type SIM (18) (37) eap: Calling submodule eap_sim to process data (37)* eap_sim: ERROR: EAP-SIM-RAND1 not found* (37) eap: ERROR: Failed starting EAP SIM (18) session. EAP sub-module failed (37) eap: Sending EAP Failure (code 4) ID 2 length 4 (37) eap: Failed in EAP select (37) [eap] = invalid (37) } # authenticate = invalid (37) Failed to authenticate the user (37) Using Post-Auth-Type Reject (37) # Executing group from file /usr/local/etc/raddb/sites-enabled/default (37) Post-Auth-Type REJECT { (37) attr_filter.access_reject: EXPAND %{User-Name} (37) attr_filter.access_reject: --> 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org (37) attr_filter.access_reject: Matched entry DEFAULT at line 18 (37) [attr_filter.access_reject] = updated (37) eap: Reply already contained an EAP-Message, not inserting EAP-Failure (37) [eap] = noop (37) policy remove_reply_message_if_eap { (37) if (&reply:EAP-Message && &reply:Reply-Message) { (37) if (&reply:EAP-Message && &reply:Reply-Message) -> FALSE (37) else { (37) [noop] = noop (37) } # else = noop (37) } # policy remove_reply_message_if_eap = noop (37) } # Post-Auth-Type REJECT = updated (37) Delaying response for 1.000000 seconds Waking up in 0.3 seconds. Waking up in 0.6 seconds. (37) <delay>: Sending delayed response (37) <delay>: Sent Access-Reject Id 91 from 192.168.1.98:1812 to 192.168.1.14:32768 length 44
I don't think the passwd file is being processed properly. Am I missing something?
Thanks Sid
On Fri, Aug 14, 2015 at 10:11 AM, Siddharth Katragadda < siddharthk@google.com> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 15, 2015, at 01:16, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
*passwd file in mods-enabled:* passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*EAP-Sim-IMSI:EAP-Sim-RAND1:EAP-Sim-SRES1:EAP-Sim-KC1:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2:EAP-Sim-RAND2:EAP-Sim-SRES2:EAP-Sim-KC2" hash_size = 100 ignore_nislike = no allow_multiple_keys = no }
*simtriplets.dat file (IMSI followed by 3 sets of triplets):* 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:2 ADE1426F93045258CCD7B9CF739CD51:CA1a6a73:44163dcd3063ee06:A7DB577E986F41e999981FE01E8E9351:9E0ec181:2B3182377B3d2e05:92F13B6BB93641b0914DD3D6DAAFB78C:9Ca5541a:767e395d867fa4b0
I get this error when I run the test. I'm using a phone with a test SIM in it (IMSI: 1001010123456789): eap: Expiring EAP session with state 0x4e4609474d431cf0 (37) eap: Finished EAP session with state 0x50b3a7b250b1a3eb (37) eap: Previous EAP request found for state 0x50b3a7b250b1a3eb, released from the list (37) eap: Peer sent packet with method EAP NAK (3) (37) eap: Found mutually acceptable type SIM (18) (37) eap: Calling submodule eap_sim to process data (37)* eap_sim: ERROR: EAP-SIM-RAND1 not found* (37) eap: ERROR: Failed starting EAP SIM (18) session. EAP sub-module failed (37) eap: Sending EAP Failure (code 4) ID 2 length 4 (37) eap: Failed in EAP select (37) [eap] = invalid (37) } # authenticate = invalid (37) Failed to authenticate the user (37) Using Post-Auth-Type Reject (37) # Executing group from file /usr/local/etc/raddb/sites-enabled/default (37) Post-Auth-Type REJECT { (37) attr_filter.access_reject: EXPAND %{User-Name} (37) attr_filter.access_reject: --> 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org (37) attr_filter.access_reject: Matched entry DEFAULT at line 18 (37) [attr_filter.access_reject] = updated (37) eap: Reply already contained an EAP-Message, not inserting EAP-Failure (37) [eap] = noop (37) policy remove_reply_message_if_eap { (37) if (&reply:EAP-Message && &reply:Reply-Message) { (37) if (&reply:EAP-Message && &reply:Reply-Message) -> FALSE (37) else { (37) [noop] = noop (37) } # else = noop (37) } # policy remove_reply_message_if_eap = noop (37) } # Post-Auth-Type REJECT = updated (37) Delaying response for 1.000000 seconds Waking up in 0.3 seconds. Waking up in 0.6 seconds. (37) <delay>: Sending delayed response (37) <delay>: Sent Access-Reject Id 91 from 192.168.1.98:1812 to 192.168.1.14:32768 length 44
I don't think the passwd file is being processed properly. Am I missing something?
Thanks Sid
On Fri, Aug 14, 2015 at 10:11 AM, Siddharth Katragadda < siddharthk@google.com> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:26, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:26, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:26, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:24, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:27, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:27, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:27, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:20, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:18, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:19, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:17, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:16, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:15, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:14, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 15, 2015, at 01:11, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Alan, After looking up the dictionary file for EAP-SIM attributes, I used the following settings:
On Fri, Aug 14, 2015 at 2:08 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 12, 2015, at 9:25 PM, Siddharth Katragadda <siddharthk@google.com> wrote: format = "*IMSI:RAND:SRES:KC"
Those aren't RADIUS attribute names. Go read dictionary.freeradius.internal, and look for "EAP-SIM". There are a bunch of SIM related attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 13, 2015, at 03:25, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan,
For the format, I did try this:
format = "*IMSI:RAND:SRES:KC"
I assumed for EAP-SIM, the IMSI is the key attribute and the triplet of RAND:SRES:KC will be the password??
I get the following error: rlm_passwd: unable to resolve attribute IMSI
I tried to lookup the corr. attribute names for IMSI, Rand, Sres, KC on the Freeradius Attribute RFC but couldn't find them: http://freeradius.org/rfc/attributes.html
Can you please help me define the "format" for EAP-SIM passwd file
Thanks Sid
On Wed, Aug 12, 2015 at 12:19 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 11, 2015, at 11:38 PM, Siddharth Katragadda via Freeradius-Users < freeradius-users@lists.freeradius.org> wrote: I had a question about EAP-SIM. We previously got EAP-SIM to work on the Free-radius version 2. But once we upgraded to 3.0, we saw the rlm_sim_files has been deprecated and now we need to use rlm_passwd.
Or anything else. The passwd module can read simple files, which is pretty much what sim_files did.
2. Changed passwd file under mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*User-Name:User-Password"
That won't work. You need to make sure that the data file is formatted in a way the "passwd" module likes. Then, ensure that the "format" string for the passwd module reads the SIM triplets from the correct field.
Here, you've told it to "look up User-Name, and get the User-Password" from the file. That clearly isn't what you want.
So... read the passwd documentation, and fix the "format" line to have the names of the SIM triplet attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:22, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 13, 2015, at 03:25, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan,
For the format, I did try this:
format = "*IMSI:RAND:SRES:KC"
I assumed for EAP-SIM, the IMSI is the key attribute and the triplet of RAND:SRES:KC will be the password??
I get the following error: rlm_passwd: unable to resolve attribute IMSI
I tried to lookup the corr. attribute names for IMSI, Rand, Sres, KC on the Freeradius Attribute RFC but couldn't find them: http://freeradius.org/rfc/attributes.html
Can you please help me define the "format" for EAP-SIM passwd file
Thanks Sid
On Wed, Aug 12, 2015 at 12:19 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 11, 2015, at 11:38 PM, Siddharth Katragadda via Freeradius-Users < freeradius-users@lists.freeradius.org> wrote: I had a question about EAP-SIM. We previously got EAP-SIM to work on the Free-radius version 2. But once we upgraded to 3.0, we saw the rlm_sim_files has been deprecated and now we need to use rlm_passwd.
Or anything else. The passwd module can read simple files, which is pretty much what sim_files did.
2. Changed passwd file under mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*User-Name:User-Password"
That won't work. You need to make sure that the data file is formatted in a way the "passwd" module likes. Then, ensure that the "format" string for the passwd module reads the SIM triplets from the correct field.
Here, you've told it to "look up User-Name, and get the User-Password" from the file. That clearly isn't what you want.
So... read the passwd documentation, and fix the "format" line to have the names of the SIM triplet attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:22, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 13, 2015, at 03:25, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan,
For the format, I did try this:
format = "*IMSI:RAND:SRES:KC"
I assumed for EAP-SIM, the IMSI is the key attribute and the triplet of RAND:SRES:KC will be the password??
I get the following error: rlm_passwd: unable to resolve attribute IMSI
I tried to lookup the corr. attribute names for IMSI, Rand, Sres, KC on the Freeradius Attribute RFC but couldn't find them: http://freeradius.org/rfc/attributes.html
Can you please help me define the "format" for EAP-SIM passwd file
Thanks Sid
On Wed, Aug 12, 2015 at 12:19 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 11, 2015, at 11:38 PM, Siddharth Katragadda via Freeradius-Users < freeradius-users@lists.freeradius.org> wrote: I had a question about EAP-SIM. We previously got EAP-SIM to work on the Free-radius version 2. But once we upgraded to 3.0, we saw the rlm_sim_files has been deprecated and now we need to use rlm_passwd.
Or anything else. The passwd module can read simple files, which is pretty much what sim_files did.
2. Changed passwd file under mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*User-Name:User-Password"
That won't work. You need to make sure that the data file is formatted in a way the "passwd" module likes. Then, ensure that the "format" string for the passwd module reads the SIM triplets from the correct field.
Here, you've told it to "look up User-Name, and get the User-Password" from the file. That clearly isn't what you want.
So... read the passwd documentation, and fix the "format" line to have the names of the SIM triplet attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Nov 19, 2018, at 20:22, Song Zou via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
please don’t send email
On Aug 13, 2015, at 03:25, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan,
For the format, I did try this:
format = "*IMSI:RAND:SRES:KC"
I assumed for EAP-SIM, the IMSI is the key attribute and the triplet of RAND:SRES:KC will be the password??
I get the following error: rlm_passwd: unable to resolve attribute IMSI
I tried to lookup the corr. attribute names for IMSI, Rand, Sres, KC on the Freeradius Attribute RFC but couldn't find them: http://freeradius.org/rfc/attributes.html
Can you please help me define the "format" for EAP-SIM passwd file
Thanks Sid
On Wed, Aug 12, 2015 at 12:19 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 11, 2015, at 11:38 PM, Siddharth Katragadda via Freeradius-Users < freeradius-users@lists.freeradius.org> wrote: I had a question about EAP-SIM. We previously got EAP-SIM to work on the Free-radius version 2. But once we upgraded to 3.0, we saw the rlm_sim_files has been deprecated and now we need to use rlm_passwd.
Or anything else. The passwd module can read simple files, which is pretty much what sim_files did.
2. Changed passwd file under mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*User-Name:User-Password"
That won't work. You need to make sure that the data file is formatted in a way the "passwd" module likes. Then, ensure that the "format" string for the passwd module reads the SIM triplets from the correct field.
Here, you've told it to "look up User-Name, and get the User-Password" from the file. That clearly isn't what you want.
So... read the passwd documentation, and fix the "format" line to have the names of the SIM triplet attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 13, 2015, at 03:25, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi Alan,
For the format, I did try this:
format = "*IMSI:RAND:SRES:KC"
I assumed for EAP-SIM, the IMSI is the key attribute and the triplet of RAND:SRES:KC will be the password??
I get the following error: rlm_passwd: unable to resolve attribute IMSI
I tried to lookup the corr. attribute names for IMSI, Rand, Sres, KC on the Freeradius Attribute RFC but couldn't find them: http://freeradius.org/rfc/attributes.html
Can you please help me define the "format" for EAP-SIM passwd file
Thanks Sid
On Wed, Aug 12, 2015 at 12:19 AM, Alan DeKok <aland@deployingradius.com> wrote:
On Aug 11, 2015, at 11:38 PM, Siddharth Katragadda via Freeradius-Users < freeradius-users@lists.freeradius.org> wrote: I had a question about EAP-SIM. We previously got EAP-SIM to work on the Free-radius version 2. But once we upgraded to 3.0, we saw the rlm_sim_files has been deprecated and now we need to use rlm_passwd.
Or anything else. The passwd module can read simple files, which is pretty much what sim_files did.
2. Changed passwd file under mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*User-Name:User-Password"
That won't work. You need to make sure that the data file is formatted in a way the "passwd" module likes. Then, ensure that the "format" string for the passwd module reads the SIM triplets from the correct field.
Here, you've told it to "look up User-Name, and get the User-Password" from the file. That clearly isn't what you want.
So... read the passwd documentation, and fix the "format" line to have the names of the SIM triplet attributes.
Alan DeKok.
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 12, 2015, at 05:38, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi, Freeradius Version: 3.0 I had a question about EAP-SIM. We previously got EAP-SIM to work on the Free-radius version 2. But once we upgraded to 3.0, we saw the rlm_sim_files has been deprecated and now we need to use rlm_passwd.
I made the following changes the config files:
1. eap - added to the eap{} sim { }
2. Changed passwd file under mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*User-Name:User-Password" hash_size = 100 ignore_nislike = no allow_multiple_keys = no }
/usr/local/etc/raddb/simtriplets.dat: 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:2 ADE1426F93045258CCD7B9CF739CD51:CA1a6a73:44163dcd3063ee06 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org: A7DB577E986F41e999981FE01E8E9351:9E0ec181:2B3182377B3d2e05 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:92 F13B6BB93641b0914DD3D6DAAFB78C:9Ca5541a:767e395d867fa4b0 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:3 D6978EEB53E4c9f94F116A4AFC15EEC:09381b57:68fca592D475ada8 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:56 F874F6F0C543c6B1D54CCE3B425E2B:3Ce1debe:4B16c28f5D165ab6
3. Added passwd in authorize section in default file under sites-available: passwd eap { ok = return }
The radiusd starts up fine with this configuration. But when I run the SIM test, I see the following error: *eap_sim: ERROR: EAP-SIM-RAND1 not found*
Is there any documentation on how to setup rlm_passwd for EAP-SIM? Any help in this regard would be appreciated.
Thanks Siddharth (Wifi Test, Google inc) - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
please don’t send email On Aug 12, 2015, at 05:38, Siddharth Katragadda via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
Hi, Freeradius Version: 3.0 I had a question about EAP-SIM. We previously got EAP-SIM to work on the Free-radius version 2. But once we upgraded to 3.0, we saw the rlm_sim_files has been deprecated and now we need to use rlm_passwd.
I made the following changes the config files:
1. eap - added to the eap{} sim { }
2. Changed passwd file under mods-enabled: passwd passwd { filename = /usr/local/etc/raddb/simtriplets.dat format = "*User-Name:User-Password" hash_size = 100 ignore_nislike = no allow_multiple_keys = no }
/usr/local/etc/raddb/simtriplets.dat: 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:2 ADE1426F93045258CCD7B9CF739CD51:CA1a6a73:44163dcd3063ee06 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org: A7DB577E986F41e999981FE01E8E9351:9E0ec181:2B3182377B3d2e05 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:92 F13B6BB93641b0914DD3D6DAAFB78C:9Ca5541a:767e395d867fa4b0 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:3 D6978EEB53E4c9f94F116A4AFC15EEC:09381b57:68fca592D475ada8 1001010123456789@wlan.mnc001.mcc001.3gppnetwork.org:56 F874F6F0C543c6B1D54CCE3B425E2B:3Ce1debe:4B16c28f5D165ab6
3. Added passwd in authorize section in default file under sites-available: passwd eap { ok = return }
The radiusd starts up fine with this configuration. But when I run the SIM test, I see the following error: *eap_sim: ERROR: EAP-SIM-RAND1 not found*
Is there any documentation on how to setup rlm_passwd for EAP-SIM? Any help in this regard would be appreciated.
Thanks Siddharth (Wifi Test, Google inc) - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
participants (6)
-
Alan Buxey -
Alan DeKok -
Matthew Newton -
Siddharth Katragadda -
Song Zou -
Zubair Ayub