Hi All, I've been using the apt repo package of FreeRadius (version 2.x) on Ubuntu 16.04. Recently, I switched to the GitHub repo version 3.1.x. I want to use "radtest -t eap-md5 ..." for testing which is supported in 2.x at /usr/bin/radtest, but 3.1.x uses a different radtest client (/usr/local/bin/radtest) which doesn't have support for eap-md5. Why is eap-md5 not there anymore? Does anyone know how to get this to work, short of copying the file? Additionally, all of my passwords are MD5 hashed. Thanks in advance, David -- David Teston PINES System Administrator dteston@georgialibraries.org
On 22-11-16 15:50, David Teston wrote:
Hi All,
I've been using the apt repo package of FreeRadius (version 2.x) on Ubuntu 16.04. Recently, I switched to the GitHub repo version 3.1.x.
I want to use "radtest -t eap-md5 ..." for testing which is supported in 2.x at /usr/bin/radtest, but 3.1.x uses a different radtest client (/usr/local/bin/radtest) which doesn't have support for eap-md5.
Why is eap-md5 not there anymore? Does anyone know how to get this to work,
https://github.com/FreeRADIUS/freeradius-server/blob/v3.1.x/src/main/radtest... Looks like it's still there. -- Herwin Weststrate Senior Software Developer Quarantainenet BV T: 053-7503070 www.quarantainenet.nl
Thanks for directing me to that. I don't know why it isn't showing up in my radtest file... I also don't have anything in the /etc/freeradius/sql/postgresql/ directory, so there might be a bigger issue at hand. Thanks again, David
Did you install by RPM? If so then the postgres stuff is commonly in a seperate rpm eg freeradius-postgresql . Likewise radtest is in the freeradius-utils or such alan
I installed via "apt freeradius freeradius-postgresql ..." initially, but removed it all before switching to the Github repo. radtest and radeapclient are both still in /usr/bin/ but the Github version uses /usr/local/bin/ and /usr/local/sbin/ for its directories. -- David Teston PINES System Administrator http://georgialibraries.org On Tue, Nov 22, 2016 at 10:18 AM, Alan Buxey <A.L.M.Buxey@lboro.ac.uk> wrote:
Did you install by RPM? If so then the postgres stuff is commonly in a seperate rpm eg freeradius-postgresql . Likewise radtest is in the freeradius-utils or such
alan
On Tue, Nov 22, 2016 at 9:50 PM, David Teston <dteston@georgialibraries.org> wrote:
Hi All,
I've been using the apt repo package of FreeRadius (version 2.x) on Ubuntu 16.04. Recently, I switched to the GitHub repo version 3.1.x.
IIRC the general recommendation is "use 3.0.x". 3.1 is no longer maintained (and there never was an official release based on it), while 4.x is currently "broken" for end users. What feature/capability were you looking for in 3.1? -- Fajar
I should've installed 3.0.x instead. I wasn't looking for a specific feature necessarily -- just the most upgraded stable version. -- David Teston PINES System Administrator Georgia Public Library Service 1800 Century Place, Suite 150 Atlanta, GA 30345 Office: 404-235-7206 Mobile: 404-623-8676 dteston@georgialibraries.org http://georgialibraries.org On Tue, Nov 22, 2016 at 10:20 AM, Fajar A. Nugraha <list@fajar.net> wrote:
On Tue, Nov 22, 2016 at 9:50 PM, David Teston < dteston@georgialibraries.org> wrote:
Hi All,
I've been using the apt repo package of FreeRadius (version 2.x) on Ubuntu 16.04. Recently, I switched to the GitHub repo version 3.1.x.
IIRC the general recommendation is "use 3.0.x". 3.1 is no longer maintained (and there never was an official release based on it), while 4.x is currently "broken" for end users.
What feature/capability were you looking for in 3.1?
-- Fajar - List info/subscribe/unsubscribe? See http://www.freeradius.org/ list/users.html
On 22/11/2016 15:48, David Teston wrote:
I should've installed 3.0.x instead. I wasn't looking for a specific feature necessarily -- just the most upgraded stable version.
If this is under Ubuntu then the easiest solution is to install the packages from the FreeRADIUS PPA: https://launchpad.net/~freeradius/+archive/ubuntu/stable-3.0 However at the moment this will only give you 3.0.11, not 3.0.12.
Brian, thanks for the link to the PPA. The error was just "radtest: No 'radeapclient' program was found. Cannot perform EAP-MD5." as you listed above. I think the issue was caused when it was built. I've added the PPA and am now getting other errors. Going to keep troubleshooting for now. Thank you all for your help. David -- David Teston PINES System Administrator http://georgialibraries.org On Tue, Nov 22, 2016 at 1:22 PM, Brian Candler <b.candler@pobox.com> wrote:
On 22/11/2016 15:48, David Teston wrote:
I should've installed 3.0.x instead. I wasn't looking for a specific feature necessarily -- just the most upgraded stable version.
If this is under Ubuntu then the easiest solution is to install the packages from the FreeRADIUS PPA:
https://launchpad.net/~freeradius/+archive/ubuntu/stable-3.0
However at the moment this will only give you 3.0.11, not 3.0.12.
On 22/11/2016 14:50, David Teston wrote:
I want to use "radtest -t eap-md5 ..." for testing which is supported in 2.x at /usr/bin/radtest, but 3.1.x uses a different radtest client (/usr/local/bin/radtest) which doesn't have support for eap-md5.
What exact error message did you get? radtest is just a shell script. When you pass -t eap-md5 it does this: eap-md5) PASSWORD="User-Password" if [ ! -x "$radeapclient" ] then echo "radtest: No 'radeapclient' program was found. Cannot perform EAP-MD5." >&1 exit 1 fi radclient="$radeapclient" ;; If you got the error message "No 'radeapclient' program was found" then there's your answer. As far as I can see, radeapclient is still in v3.1.x, so maybe it didn't get built (e.g. you were missing some dev library at the time you built it), or it wasn't installed by "make install", or it's in the wrong location (check the radtest script for 'bindir') If you got some other error message, then let us see it.
Hello wise people, Since I installed FR 3.0.12 on Debian Jessie, life is good. Thanks a lot to the developers for making such nice software ! Now, could someone please tell me the difference between radutmp and sradutmp files, upon which some tools like radlast or radwho rely ? Thanks much ! Regards,, Fred ~ ~ ~
On Nov 22, 2016, at 11:06 AM, Frederic Fichter <ffichter@mac.com> wrote:
Hello wise people,
Since I installed FR 3.0.12 on Debian Jessie, life is good. Thanks a lot to the developers for making such nice software ! Now, could someone please tell me the difference between radutmp and sradutmp files, upon which some tools like radlast or radwho rely ?
sradutmp has less secret data in it than radutmp. Honestly, just use radutmp. Or, if you have more than 1K users, SQL. Alan DeKok.
participants (7)
-
Alan Buxey -
Alan DeKok -
Brian Candler -
David Teston -
Fajar A. Nugraha -
Frederic Fichter -
Herwin Weststrate