Page 1 of 1
Open Source When?
Posted: Fri Dec 20, 2013 4:52 pm
by gavstah
SoftEther dev team said that OpenSource was supposed to be released by mid-2013. So far, this hasn't happened and the last server update was mid-Sept.
Is there any update on when Open Source version of SoftEther (specifically RADIUS auth) will be released?
Re: Open Source When?
Posted: Fri Dec 20, 2013 5:12 pm
by cedar
Comments in the SoftEther source code is written in Japanese.
We would like to remove the multi-byte characters from the source code to be published.
I am working to translate the comments in the source code to English.
because I'm not good at English, my work has been delayed.
I plan to end this translation by this year.
I'm sorry for my delaying work.
Please wait for a month.
Re: Open Source When?
Posted: Sun Dec 22, 2013 7:59 pm
by hyper
you and your software is best
thank you
Re: Open Source When?
Posted: Mon Dec 23, 2013 3:29 pm
by fbb_3213
Thanks for everything, cedar. You guys rock!
Re: Open Source When?
Posted: Fri Dec 27, 2013 5:00 pm
by UkrZilla
Don't panic, wait for a source)
http://www.softether.org/9-about
"He founded SoftEther Corporation in Japan to deal with Mitsubishi Materials Corporation. Because the income from SoftEther CA has been terrible, SoftEther Corporation has attempted to develop and sell some software and online services in Japan. The revenues have been quite well for several years, however SoftEther Corporation has prohibited to sell "SoftEther 1.0" by itself due to the exclusive contact with Mitsubishi Materials Corporation for just 10 years. (From April 2004 to April 2014)"
Re: Open Source When?
Posted: Sun Dec 29, 2013 7:46 am
by hdavy2002
Thanks Cedar. I would like to encourage you to finish. I am sure it is not easy and you have other work to do. I am sure in the coming new year, we will be able to see the source. Many thanks once again for the good work you are doing. Please do keep us posted. It is exciting to dream that we will have the source ready by the end of January. Patience, Patience and Patience.
Cheers
Re: Open Source When?
Posted: Sat Jan 04, 2014 7:40 am
by inten
Saturday or Sunday? ;-)
Re: Open Source When?
Posted: Sat Jan 04, 2014 11:31 am
by hdavy2002
If this is serious, I can patiently wait another month. lol.
Re: Open Source When?
Posted: Sat Jan 04, 2014 1:20 pm
by inten
Saturday! :-) Source code released.
Re: Open Source When?
Posted: Sat Jan 04, 2014 1:24 pm
by hdavy2002
you serious! where did u hear that
Re: Open Source When?
Posted: Sat Jan 04, 2014 1:32 pm
by inten
Re: Open Source When?
Posted: Sat Jan 04, 2014 2:30 pm
by hdavy2002
Finally :). Cannot believe this lol
Re: Open Source When?
Posted: Sat Jan 04, 2014 2:31 pm
by hdavy2002
@inten: How far is your VPN automation project coming up? I am eager to test it and sign up.
Re: Open Source When?
Posted: Sat Jan 04, 2014 7:25 pm
by UkrZilla
So, now we can enable in Server Manager buttons:
- Log Save Setting
- Authentification Server Setting
It is easy with source and debug it in VS2008 :)
File SM.c
function SmHubDlgInit
use:
support_log = GetCapsBool(caps, "b_support_config_log") || 1 == 1;
support_config_radius = GetCapsBool(caps, "b_support_radius") || 1 == 1;
instead:
support_log = GetCapsBool(caps, "b_support_config_log");
support_config_radius = GetCapsBool(caps, "b_support_radius");
Re: Open Source When?
Posted: Sat Jan 04, 2014 10:04 pm
by UkrZilla
And enable support Syslog:
file SM.c
function SmSslDlgInit
use:
if (GetCapsBool(s->p->CapsList, "b_support_syslog") || 1 == 1)
instead:
if (GetCapsBool(s->p->CapsList, "b_support_syslog"))
Re: Open Source When?
Posted: Sun Jan 05, 2014 2:00 am
by parkycai
saw the SE become opensource. you guys rock!
looking forward to OSX client :-)
Re: Open Source When?
Posted: Mon Jan 06, 2014 5:11 pm
by adriman
Can you share compiled VPN manager exe ?
UkrZilla wrote:
> So, now we can enable in Server Manager buttons:
> - Log Save Setting
> - Authentification Server Setting
>
> It is easy with source and debug it in VS2008 :)
>
> File SM.c
> function SmHubDlgInit
>
> use:
>
> support_log = GetCapsBool(caps, "b_support_config_log") || 1 ==
> 1;
> support_config_radius = GetCapsBool(caps, "b_support_radius") ||
> 1 == 1;
>
> instead:
>
> support_log = GetCapsBool(caps, "b_support_config_log");
> support_config_radius = GetCapsBool(caps, "b_support_radius");
Re: Open Source When?
Posted: Mon Jan 06, 2014 8:13 pm
by UkrZilla
adriman wrote:
> Can you share compiled VPN manager exe ?
Hi adriman!
Compilde server manager
https://dl.dropboxusercontent.com/u/637 ... gr_x64.exe
or
http://yadi.sk/d/rmPRErYuFZSSa
Re: Open Source When?
Posted: Mon Jan 06, 2014 8:22 pm
by adriman
Can you confirm that you have managed to configure Radius authentication and it's working ?
UkrZilla wrote:
> adriman wrote:
> > Can you share compiled VPN manager exe ?
>
> Hi adriman!
>
> Compilde server manager
>
https://dl.dropboxusercontent.com/u/637 ... gr_x64.exe
> or
>
http://yadi.sk/d/rmPRErYuFZSSa
Re: Open Source When?
Posted: Mon Jan 06, 2014 8:58 pm
by UkrZilla
I have no radius server and can't check it out (
Re: Open Source When?
Posted: Tue Jan 07, 2014 8:09 pm
by UkrZilla
After some investigation I realize that code working with Radius/NT/Certificate is absent in open source version:
if (t->AuthType == AUTHTYPE_USERCERT || t->AuthType == AUTHTYPE_RADIUS || t->AuthType == AUTHTYPE_ROOTCERT || t->AuthType == AUTHTYPE_NT)
{
return ERR_NOT_SUPPORTED_AUTH_ON_OPENSOURCE;
}
I think we can use it aftre april 2014.
Re: Open Source When?
Posted: Fri Jan 10, 2014 5:59 pm
by gavstah
Hi Cedar -
Many thanks for the open source version and all of your hard work - this is great! Just one thing though, RADIUS auth does not seem to be enabled in the open source version. Can you provide any timeframe on when this will be available?
cedar wrote:
> Comments in the SoftEther source code is written in Japanese.
> We would like to remove the multi-byte characters from the source code to
> be published.
> I am working to translate the comments in the source code to English.
> because I'm not good at English, my work has been delayed.
> I plan to end this translation by this year.
> I'm sorry for my delaying work.
> Please wait for a month.
Re: Open Source When?
Posted: Thu Jan 16, 2014 8:11 am
by adriman
Does anyone know if there is any API or an easy way to add/delete multiple clients ?
Re: Open Source When?
Posted: Thu Jan 16, 2014 9:07 am
by inten
vpncmd or you can use the source code to create your own small agent.