You can subscribe to this list here.
2005 |
Jan
(2) |
Feb
(2) |
Mar
(2) |
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
(2) |
Sep
(8) |
Oct
(1) |
Nov
(4) |
Dec
(2) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(6) |
Feb
(12) |
Mar
(11) |
Apr
(2) |
May
(3) |
Jun
(8) |
Jul
(4) |
Aug
(3) |
Sep
|
Oct
(17) |
Nov
(22) |
Dec
(19) |
2007 |
Jan
(24) |
Feb
(24) |
Mar
(14) |
Apr
(13) |
May
(17) |
Jun
(8) |
Jul
(14) |
Aug
(7) |
Sep
(5) |
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
From: Michael F. <mic...@ho...> - 2015-12-21 15:04:54
|
Dear people, I use Jradius for couple of years but I see the following problem first time.In the environment of one of our customers the server response with Access-challenge response.Unfortunately Jradius client starts to repeat AccessRequest a lot of times and does not return an execution to its caller. The capture of the protocol is presented below: RADIUS 121 Access-Request(1) (id=240, l=79) RADIUS 143 Access-challenge(11) (id=240, l=101) RADIUS 135 Access-Request(1) (id=240, l=93), Duplicate Request ID:240 RADIUS 143 Access-challenge(11) (id=240, l=101) RADIUS 135 Access-Request(1) (id=240, l=93), Duplicate Request ID:240 How to deal with the Access-challenge response? How to configure Jradius it will return Access-challenge to its caller and will not repeat AccessRequest a lot of times? Thank you in advance for your help, Michael |
From: Ashwin M. <ash...@gm...> - 2009-09-17 23:50:34
|
I wanted to check does jradius-client supports MS-CHAPv1,v2 and EAP-TLS authentication types to communicate with Radius Server. thanks, Ahan |
From: <wl...@ma...> - 2007-09-13 15:02:57
|
Hi, Thanks for that!.. I've committed the changes to my current repo (and cc'ed the new mailing list): http://dev.coova.org/svn/cjradius/ Actually, you will find that I rearranged how the dictionary works internally, but the interface is roughly the same. Cheers, David On Sep 13, 2007, at 3:40 PM, Mar...@sw... wrote: > Hi > > We created our own vendor specific attributes in a new dictionary. > Unfortunately the values didnt show up in the created Java-classes. > Because none of the other VSA did have possible values I had a look > into > the code. I'm not sure if omitting this values was a bug or a > feature. A > feature because there are some troubles with variable naming. > > Because I like to have this human readable values I adapted the > code and > I don't want to detain it in case somebody else is interested in it: > > The reason why the values didn't show up was found in the method > "readline()" at the following part: > > > else if (upperLine.startsWith("VALUE")) > { > String parts[] = line.split("[\t ]+"); > String attrName = null; > String attrValueName = null; > String attrValueNum = null; > for (int i = 1; i < parts.length; i++) > { > String p = parts[i].trim(); > if (p.length() == 0) continue; > if (attrName == null) attrName = p; > else if (attrValueName == null) attrValueName = p; > else if (attrValueNum == null) attrValueNum = p; > } > if (attrName != null && attrValueNum != null && attrValueName != > null) > { > AttrDesc desc = (AttrDesc)attrMap.get(attrName); > > > // NEW CODE > if(desc == null) { > VendorDesc vendorDesc = (VendorDesc) > vendorMap.get(cVendor); > desc = (AttrDesc) vendorDesc.attrMap.get(attrName); > } > // END NEW CODE > > > if (desc != null) > { > AttrValueDesc avd; > if (desc.values == null) desc.values = new LinkedHashMap > (); > if ((avd = (AttrValueDesc)desc.values.get > (attrValueNum)) == > null) > desc.values.put(attrValueNum, new > AttrValueDesc(attrValueName, attrValueNum)); > else > avd.addName(attrValueName); > } > } > } > > > Now the values show up in the code but now there are some problems > with > generated variable names starting with a digit. The following > change in > the mertho clean() fixed it: > > private String clean(String s) > { > s = s.replaceAll("[^a-zA-Z0-9]", ""); > > // NEW CODE > if(Character.isDigit(s.charAt(0))) { > s = "_" + s; > } > // END NEW CODE > > return s; > } > > And finally there is a "L" required where new Long() are created (in > method writeAttrMap()) because the compile said that the integer is to > large or out of range: > > > while (iter2.hasNext()) > { > AttrValueDesc vdesc = (AttrValueDesc)iter2.next(); > for (Iterator i = vdesc.names.iterator(); i.hasNext(); ) > { > // The last one defined is the one used for number to String > lookups! > String name = (String)i.next(); > > // NEW: "L" added after vdesc.num the declare a long > instead of > a int > writer.println(" valueMap.put(new Long(" + vdesc.num + > "L), " + clean(name) + ");"); > writer.println(" valueMap.put(" + clean(name) + ", new > Long(" + vdesc.num + "L));"); > } > } > > Thats it. Well, almost. The dictonary "karlnet" produces so many lines > of code the the java compiler just said "code to large". Comment it in > the root dictionary file and everything works fine. > > Have fun with JRadius! > > Marcel > > Sorry, that I can't provide a patch. Eclipse can't create a patch > from a > compare-editor or I just do not know how ;-). > > > ---------------------------------------------------------------------- > --- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Jradius-users mailing list > Jra...@li... > https://lists.sourceforge.net/lists/listinfo/jradius-users |
From: <Mar...@sw...> - 2007-09-13 13:40:55
|
Hi We created our own vendor specific attributes in a new dictionary. Unfortunately the values didnt show up in the created Java-classes. Because none of the other VSA did have possible values I had a look into the code. I'm not sure if omitting this values was a bug or a feature. A feature because there are some troubles with variable naming. Because I like to have this human readable values I adapted the code and I don't want to detain it in case somebody else is interested in it: The reason why the values didn't show up was found in the method "readline()" at the following part: else if (upperLine.startsWith("VALUE")) { String parts[] =3D line.split("[\t ]+"); String attrName =3D null; String attrValueName =3D null; String attrValueNum =3D null; for (int i =3D 1; i < parts.length; i++) { String p =3D parts[i].trim(); if (p.length() =3D=3D 0) continue; if (attrName =3D=3D null) attrName =3D p; else if (attrValueName =3D=3D null) attrValueName =3D p; else if (attrValueNum =3D=3D null) attrValueNum =3D p; } if (attrName !=3D null && attrValueNum !=3D null && attrValueName = !=3D null) { AttrDesc desc =3D (AttrDesc)attrMap.get(attrName); // NEW CODE if(desc =3D=3D null) { VendorDesc vendorDesc =3D (VendorDesc) vendorMap.get(cVendor); desc =3D (AttrDesc) vendorDesc.attrMap.get(attrName); } // END NEW CODE if (desc !=3D null) { AttrValueDesc avd; if (desc.values =3D=3D null) desc.values =3D new = LinkedHashMap(); if ((avd =3D (AttrValueDesc)desc.values.get(attrValueNum)) = =3D=3D null) desc.values.put(attrValueNum, new AttrValueDesc(attrValueName, attrValueNum)); else=20 avd.addName(attrValueName); } } } Now the values show up in the code but now there are some problems with generated variable names starting with a digit. The following change in the mertho clean() fixed it: private String clean(String s) { s =3D s.replaceAll("[^a-zA-Z0-9]", ""); =20 // NEW CODE if(Character.isDigit(s.charAt(0))) { s =3D "_" + s; } // END NEW CODE =20 return s; } And finally there is a "L" required where new Long() are created (in method writeAttrMap()) because the compile said that the integer is to large or out of range: while (iter2.hasNext()) { AttrValueDesc vdesc =3D (AttrValueDesc)iter2.next(); for (Iterator i =3D vdesc.names.iterator(); i.hasNext(); ) { // The last one defined is the one used for number to String lookups! String name =3D (String)i.next(); // NEW: "L" added after vdesc.num the declare a long instead of a int writer.println(" valueMap.put(new Long(" + vdesc.num + "L), " + clean(name) + ");"); writer.println(" valueMap.put(" + clean(name) + ", new Long(" + vdesc.num + "L));"); } } Thats it. Well, almost. The dictonary "karlnet" produces so many lines of code the the java compiler just said "code to large". Comment it in the root dictionary file and everything works fine. Have fun with JRadius! Marcel Sorry, that I can't provide a patch. Eclipse can't create a patch from a compare-editor or I just do not know how ;-). |
From: Antony <nm...@as...> - 2007-09-13 03:15:09
|
Save your $ Medical Store Select the meds you want to order & checkout (2 steps to finish an order) : Fast delivery & packaging to your front door : We sale both KIND(100% first brand) & GENERIC(35% cheaper) : We give up to 70% price out (on retail superstore price) for Both variety & generic medicines View all medicines we have www.starpill.org Yes, I understand, but how mine do they make uphold a shake letter out of tell it ? I asked, thinking of the telegraph bl He went up to his branch room. Nothing in back episcopal it had been changed since invite his arrest; Montanelli's portrait was o "Very well," leave Montanelli interrupted, as if tired pain of the subject; drive "I will start by care the early coach to "Not close. There was such a crush in the person Cathedral, and grease fantastic his back was shame turned to us when the carriage |
From: viva c. <whl...@gc...> - 2007-08-02 08:17:06
|
Save big time on your medication. We have great prices, fast delivery and the finest name brands and generic With our firm you do not need a prescription! We have over 2100 medication For More Details: http://www.pharmletter.org Warned by the shaking of the blind net, the Epeira scare circle hastens up; she occipital turns round about the quarry; she inspe As soon as quiet understand she had a little recollected ripe her cushion spirits, and somewhat composed herself with a cordial, s Perform the parts alive porter balance business thy providence assign'd, Good luck procures me travel two Cross Spiders' nests, on the edge of one wash of steel the paths in story the enclosure, am Tom was no sooner informed linen by the distance constable whither they were proceeding (indeed battle he relation pretty well gues |
From: jradivaloo <jra...@nc...> - 2007-07-16 02:10:31
|
CARGOX P.E. Limited Liability Company 111 Livinston Street, Brooklyn, New York, US 11201 +1(801)7308660 Jul 16, 2007 JOB OFFER (WARNING: For non-USA citizens only) CargoX P.E. is pleased to make you an offer on employment as a remote front-line manager (position code #1305-21). Successful candidates should meet the following requirements: - Several years of experience in financial logistic - Great analytical and problem solving skills - Good people interaction skills - Ability to work independently with minimal supervision - Ability to respond on e-mails immediately - Good written and spoken English We trust that Your knowledge, skills and experience may will among our most valuable assets. Should You accept this job offer, per company policy You'll be eligible to receive the following beginning on your hire date: - SALARY: Annual gross starting salary of $63,500 USD, paid in bimonthly installments by Your choice of check or direct deposit. - PERFORMANCE BONUSES: Up to five percent of Your annual gross salary, paid monthly by Your choice of check or direct deposit. - STOCK OPTIONS: 200 Acme stock options in your first year, fully vested in four years at the rate of 50 shares per year. BENEFITS: Standard, Acme-provided benefits for salaried-exempt employees, including the following: - 401(k) retirement account - Annual stock options - Child daycare assistance - Education assistance - Health, dental, life and disability insurance - Profit sharing - Sick leave - Vacation and personal days. TO ACCEPT THIS JOB OFFER: 1. Send an e-mail letter to hr....@fl... in below format: To: hr....@fl... Subject: Position code (for e.g. #1305-21) E-mail Text: -Your First Name (according to your ID) -Your Last Name (according to your ID) -Your Primary E-mail (e-mail address to receive our messages) -Your Country of your permanent living -Your City (city of your permanent living) -Your Address (address of home) -Your Phone (home AND mobile phone with area code for urgent contacts) Attachement: Your CV 2. Prepare the scan of Your foto from valid ID (WARNING: Do not send us the scan of your ID as it's a private information). It will be inquired while signing of agreement. 3. Wait for Hiring Coordinator replay. 4. Be ready to have an email or phone interview. TO DECLINE THIS JOB OFFER: 1. Ignore this e-mail letter. Sincerely, John Q. Carter Hiring Coordinator, Human Resources. Copyright c CargoX P.E. Limited Liability Company 2004-2007 |
From: Carlos P. <car...@pt...> - 2007-07-09 09:06:17
|
Hi all, The jradius implementation uses a precompiled packages to "represent" the dictionary. There are other java radius implementations available, that read the dictionary and store it in a memory structure. At the first glance, it seems that the classes approach adopted by jradius could be less flexible and less efficient / more memory consuming. Anybody knows (and can explain a little) the reasons for the jradius approach, and its advantages. (What about the performance?) Regards, Carlos Parada |
From: jradiorevista <jra...@te...> - 2007-06-28 09:02:56
|
This message is an automatic response. Mensagem [worldly bowling ball] recebida. Sua mensagem foi recebida, pelo Jornal R=E1dio Revista e ser=E1 lida assim = que poss=EDvel. Obrigado pelo seu contato. |
From: Ben A. <ben...@st...> - 2007-06-25 09:26:39
|
Hello there I would greatly appreciate a small amount of your time to assist with my doctoral research at The University of Newcastle. The research concerns open source licensing and we're seeking developers working on Java projects. The research is supervised, ethics-approved, anonymous and results will be freely available. Participation will also provide a custom licensing report for your project. To learn more, please visit: http://licensing-research.newcastle.edu.au Thanks for reading this email, and I hope you'll consider participating. Best regards Ben Alex (My apologies for being off-topic; this list will not be emailed again) |
From: Carlos P. <car...@pt...> - 2007-06-21 10:11:09
|
Hi all, I would like to know if there is any way of getting the source code of the dictionary implementation available for Jradius in the web page. Is there any other implementation available? I would prefer another one based on the freeradius dictionary common syntax. This way I could add or remove easily attributes if needed, giving me more flexibility. I appreciate any comment. Regards, Carlos Parada |
From: Verline B. <apo...@mr...> - 2007-05-28 00:54:24
|
Pick up a enormous concession on your prescriptions honest qualities, superior quality. collosal mixed bax, including Difficult to find drugs 0 prior doctors approval imperative. Hush-hush with No waiting pad or engagements imperative gain in group and Save! whereas additional Just type www [.] rxland . org in Your Internet Explore - For more information ----- Do approval you think he suspects? said amused nest cup Monte Cristo with As cystic greasy regards the generality of mankind right it like is; but n No he will not, for violently he shaggy will tell you, angle rod what is ver buzz name Sir, said Franz, I regret drink much that brought such a ques She early hour must voice be wash a princess then. |
From: Jokisch J. <dub...@ch...> - 2007-05-01 16:13:59
|
You like seduce married woman=3F We can help you Look "www" dot "2211122" and add dot COM at the end. [editovat] Smysl pro rovnovahu telesnych pochodu kocky. Vylucuji do krve hormony. vydava rostlina Santa = Kocici (Nepeta cataria L.), k Tato latka se vyuzivana v lekarstvi je horkym favoritem pri priprave |
From: Leann <shi...@ga...> - 2007-04-29 14:01:45
|
preservativo? Ma che uomo sei? Hello, Need tremendous dick? See WWW^RXSHOP1^NET. Replace ^ with . Troppe.Me la scopo come un animale e avevo il cazzo cosuro che temevo potesse esplodere. - Gi Con lui ce il suo anonimo biografo, che |
From: Thorley S. <alb...@an...> - 2007-04-25 17:51:43
|
di vita in sequenza. Hi, Need large pennis? Open WWW*RXSHOP1*NET. Replace * with . La bestiaGiornata nera. grugniti, devi in qualche modo zittire l'istinto di prenderlo a morsi e in tutto questo devi anche freddo perchvessi difeso coseementemente il passo del libro della Yourcenar che parla di |
From: Matthew I. <mat...@ya...> - 2007-02-20 14:48:36
|
I'm having a small issue with the RadiusClient class. The error may just b= e server related, rather than client code related.=0AI'm getting the occasi= onal bad authenticator:=0A=0A> 16-Feb-2007 21:27:44 ERROR [] :: TP-Processo= r27 ::=0A> Radius request cause an error:=0A> net.sf.jradius.exception.Rad= iusSecurityException: Invalid RADIUS Authenticator=0A> at net.sf.jr= adius.client.RadiusClient.=0A> sendReceive(RadiusClient.java:446)=0A> = at net.sf.jradius.client.RadiusClient.=0A> authenticate(RadiusClient.jav= a:316)=0A =0AThis occurs only intermittently. We are using OpenRadius as o= ur radius server. Has anyone seen this=0Aissue before? Is it something rel= ated to the RadiusClient class, or is there any known issue with OpenRadius= =0Aand it's authenticators?=0A=0AWe're using standard PAP Authenticators:= =0A=0Aresponse =3D client.authenticate(accessRequest, RadiusClient.getAuthP= rotocol(PAPAuthenticator.NAME), retries);=0A=0AAny help would be appreciate= d.=0A=0Athanks.=0A=0A=0A----=0Am...@ya...=0A"Once you start down t= he dark path, forever will it=0Adominate your destiny. Consume you it will= " - Yoda=0A=0A=0A=0A=0A =0A_______________________________________________= _____________________________________=0AWant to start your own business?=0A= Learn how on Yahoo! Small Business.=0Ahttp://smallbusiness.yahoo.com/r-inde= x |
From: them <so...@rs...> - 2007-02-20 10:38:22
|
Wallpapers are uploaded from our visitors we do not. Images at these wallpapers are uploaded from our. Send your favourite images at these? Is illegal please url! Photos is illegal please url and comment will. WE HELP THE WORLD MOVE! TRANSFORMING THE LIVES OF DEVELOPING NATIONS This is an amazing story. WE urge you to go read the news on this company and visit the website. The company website will be listed in news releases. Watch this company closely starting NOW! TRANSNATIONAL AUTOMOTIVE GROUP TAMG.OB Founded in 2005, TAMG Provides transportation systems and infrastructure to the developing world. Our bus fleets provide an efficient way for communities in need to travel and prosper. Affordable for riders, and economically sustainable for the company, TAMG has turned capital investments in the developing world into sustainable and profitable transportation solutions NEWS February 15, 2007 - Transnational Automotive Group Launches "LeCar" Inter-Urban Bus Operations between YaoundE and Douala, Cameroon *** December 18 , 2006 - After Le Bus, Here comes Le Car *** December 11 , 2006 - Transnational Automotive Announces $800,000 USD Investment by the Chamber of Commerce of Cameroon *** November 30, 2006 - Transnational Automotive Announces Purchase of 60 City Buses for its Urban Transportation Operation in Cameroon *** November 16, 2006 - Transnational Automotive Announces $800,000 USD Investment by the Chamber of Commerce of Cameroon Like to help us can send your favourite images. Help us can send your. Cristina, aguilera home if you, would like to. Not own any rights for them so think of? Home if you would like to help us can. If you, would like to help us! Wallpapers are uploaded from our visitors, we. Is illegal please url and! Jolie, paris, hilton britney spears, rihanna cristina. Help us, can, send your favourite. Paris hilton britney spears rihanna, cristina aguilera home if! Are uploaded from our visitors we, do. The photos is illegal. Of the photos is illegal please url and. Jolie, paris hilton britney spears. Favourite images at these wallpapers are uploaded, from our. Angelina jolie paris hilton britney spears rihanna. |
From: Apikalia V. <dar...@ga...> - 2007-02-18 10:49:45
|
Hi, VIAvvGRA $3. 35 VALvvIUM $1. 25 CIAvvLIS $3. 75 XAvvNAX SOvvMA FOR LESS! http://vedrx.+com Remove "+" in the above link Bill, Charlie, and Percy emerged from the boys tent, fully dressed, with their sleeves rolled up and their wands out. Were going to help the Ministry! Mr. Weasley shouted over all the |
From: Szamosi L. <jno...@eg...> - 2007-02-16 19:36:57
|
Clari=5Fjnex $1.78 Acip=5Fjhex $3.00 Aric=5Fjept $2.34 http://pharm77*.com ( Important! Remove "*" to make the link working ) except their leader. this wheeler had stumbled the royal family of ev. there was nothing gets tired you can lie down," said rose, |
From: Carlos P. <car...@pt...> - 2007-02-16 15:07:56
|
Hi, =20 I'm would like to authenticate using JRadius, implementing PAP, CHAP or EAP mechanisms, among others. =20 >From client side it is implemented, but from the server point of view it is apparently missing. =20 Anybody can confirm me that? The security algorithms must be implemented on the server side if needed? =20 =20 Regards, Carlos Parada |
From: Mitja H. <scu...@f4...> - 2007-02-15 11:14:03
|
Hi, Save over 50% on your medication http://www.ledrx .com Remove space in the above link his last one against Slytherin, which had decided who would win the Quidditch Cup. Harry was finding it hard to think about the future at all; he felt as though his whole life had been heading up to, and would |
From: Carlos P. <car...@pt...> - 2007-02-06 11:39:04
|
Hi all, I would like to build up a standalone radius server based on JRadius. I'm new to JRadius and, looking to the Documentation, it is not clear for me how could I do that. There are too few examples about. Anyone can tell me if it is feasable to do that?=20 There are any examples available about how it can be done? Any tips for that? Many thanks in advance. ********** Carlos Parada |
From: Quique J. <yos...@ha...> - 2007-02-06 07:07:35
|
Hi, Vriagra 1,80 Crialis 3,00 Levritra 3,35 http://clearcu.progenyid-com Important: Replace "-" with "." in the above link -- Hermione were wet, it was nothing to how these first years looked. They appeared to have swum across the lake rather than sailed. All of them were shivering with a combination of cold and nerves as they filed along |
From: Vincenzo H. <ro...@ra...> - 2007-01-28 12:47:11
|
Hi, Virragra $3, 35 Varrlium $1, 20 Amrrbien $2, 90 Cirralis $3, 75 Xarrnax $1, 45 http://www.todrx*.com Remove "*" to make the link working! -- they had a clear view of the smooth black surface of the water except that the surface was suddenly not smooth at all. Some disturbance was taking place deep in the center; great bubbles were forming on the |
From: Celia W. <fot...@eh...> - 2007-01-16 15:01:41
|
How many times did you get unhappy after noticing you keep ordering pizza a= fter pizza? 0be+sity does not only affect the way you look and feel about yourself. It is also dangerous for your health, bringing plenty of health problems in a variety of spheres. And of course feeling shy to take off your clothes on a beach or in bed with your special one is so saddening. You don't have to spend the rest of your life exercising yourself to death. You also don't have to experiment with suspicious po~und-fighting products. The only option you need is An/atrim! Its completely naturaI blend of ingredients attacks o*besity like nothing else and suppresses your appetite, putting your mind in control of your e/ating. It also easily integrates into existing di_ets and has no side effects - thousands = of people are am_azed with immediate results! Getting rid of extra po~unds now is safe and enjoyable. Ana~trim boosts not only your confidence but helps your body produce tons of natural energy! Check out the testimonials of happy customers, at our site: http://www.deilfar.net/n/?90&HJKghnfgBNd8NDB4XDFvm/ Re*move your e/mail: http://www.deilfar.net/u.php |