----- Original Message ----- From: "Paolo82" <paolo.isidori@email.it> Sent: Friday, June 13, 2003 12:17 PM Subject: [Openh323gk-users] Radius auth > i try to registering whit the gatekeeper radius auth chek ok, but ohphone make error. This is because gnu gk is broken regarding Auth1 H.235 security scheme (SSL). Your ohpone sends Auth1 nestedCryptoTokens to GK and GK responds with RCF that does not contain response nestedCryptoTokens. The best possible solution is to recompile ohpone P_SSL disabled. Alternatively you can modify main.cxx to override CreateAuthenticators virtual method. Sample implementation: H235Authenticators MyH323EndPoint::CreateAuthenticators() { H235Authenticators authenticators; authenticators.Append(new H235AuthSimpleMD5); authenticators.Append(new H235AuthCAT); return authenticators; } and then modifying main.h to include in public section of the class MyH323EndPoint: virtual H235Authenticators CreateAuthenticators(); (you can add it just below all virtuals). --- Michal Zygmuntowicz ------------------------------------------------------- This SF.NET email is sponsored by: eBay Great deals on office technology -- on eBay now! Click here: http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 _______________________________________________ List: Openh323gk-users@lists.sourceforge.net Archive: http://sourceforge.net/mailarchive/forum.php?forum_id=8549 Homepage: http://www.gnugk.org/