Open Source When?

Post your questions about SoftEther VPN software here. Please answer questions if you can afford.
Post Reply
gavstah
Posts: 61
Joined: Wed Jun 05, 2013 11:33 pm
Location: Glen Allen, Virginia USA
Contact:

Open Source When?

Post by gavstah » Fri Dec 20, 2013 4:52 pm

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?

cedar
Site Admin
Posts: 2070
Joined: Sat Mar 09, 2013 5:37 am

Re: Open Source When?

Post by cedar » Fri Dec 20, 2013 5:12 pm

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.

hyper
Posts: 80
Joined: Sun Apr 21, 2013 8:04 pm

Re: Open Source When?

Post by hyper » Sun Dec 22, 2013 7:59 pm

you and your software is best
thank you

fbb_3213
Posts: 6
Joined: Mon Dec 23, 2013 3:17 pm

Re: Open Source When?

Post by fbb_3213 » Mon Dec 23, 2013 3:29 pm

Thanks for everything, cedar. You guys rock!

UkrZilla
Posts: 65
Joined: Sun Dec 15, 2013 8:34 am

Re: Open Source When?

Post by UkrZilla » Fri Dec 27, 2013 5:00 pm

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)"

hdavy2002
Posts: 85
Joined: Sun Jun 30, 2013 4:24 pm

Re: Open Source When?

Post by hdavy2002 » Sun Dec 29, 2013 7:46 am

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

inten
Posts: 370
Joined: Fri Oct 18, 2013 8:15 am
Location: All around the world
Contact:

Re: Open Source When?

Post by inten » Sat Jan 04, 2014 7:40 am

Saturday or Sunday? ;-)
When you don't like the answer, change the question.
Cheers,
Team.

VPNHPanel.com
This account is not associated to SoftEther project.

hdavy2002
Posts: 85
Joined: Sun Jun 30, 2013 4:24 pm

Re: Open Source When?

Post by hdavy2002 » Sat Jan 04, 2014 11:31 am

If this is serious, I can patiently wait another month. lol.

inten
Posts: 370
Joined: Fri Oct 18, 2013 8:15 am
Location: All around the world
Contact:

Re: Open Source When?

Post by inten » Sat Jan 04, 2014 1:20 pm

Saturday! :-) Source code released.
When you don't like the answer, change the question.
Cheers,
Team.

VPNHPanel.com
This account is not associated to SoftEther project.

hdavy2002
Posts: 85
Joined: Sun Jun 30, 2013 4:24 pm

Re: Open Source When?

Post by hdavy2002 » Sat Jan 04, 2014 1:24 pm

you serious! where did u hear that

inten
Posts: 370
Joined: Fri Oct 18, 2013 8:15 am
Location: All around the world
Contact:

Re: Open Source When?

Post by inten » Sat Jan 04, 2014 1:32 pm

When you don't like the answer, change the question.
Cheers,
Team.

VPNHPanel.com
This account is not associated to SoftEther project.

hdavy2002
Posts: 85
Joined: Sun Jun 30, 2013 4:24 pm

Re: Open Source When?

Post by hdavy2002 » Sat Jan 04, 2014 2:30 pm

Finally :). Cannot believe this lol

hdavy2002
Posts: 85
Joined: Sun Jun 30, 2013 4:24 pm

Re: Open Source When?

Post by hdavy2002 » Sat Jan 04, 2014 2:31 pm

@inten: How far is your VPN automation project coming up? I am eager to test it and sign up.

UkrZilla
Posts: 65
Joined: Sun Dec 15, 2013 8:34 am

Re: Open Source When?

Post by UkrZilla » Sat Jan 04, 2014 7:25 pm

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");
Last edited by UkrZilla on Sat Jan 04, 2014 10:11 pm, edited 1 time in total.

UkrZilla
Posts: 65
Joined: Sun Dec 15, 2013 8:34 am

Re: Open Source When?

Post by UkrZilla » Sat Jan 04, 2014 10:04 pm

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"))

parkycai
Posts: 19
Joined: Sun Jul 07, 2013 7:58 am

Re: Open Source When?

Post by parkycai » Sun Jan 05, 2014 2:00 am

saw the SE become opensource. you guys rock!
looking forward to OSX client :-)

adriman
Posts: 7
Joined: Mon Jan 06, 2014 2:50 pm

Re: Open Source When?

Post by adriman » Mon Jan 06, 2014 5:11 pm

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");

UkrZilla
Posts: 65
Joined: Sun Dec 15, 2013 8:34 am

Re: Open Source When?

Post by UkrZilla » Mon Jan 06, 2014 8:13 pm

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

adriman
Posts: 7
Joined: Mon Jan 06, 2014 2:50 pm

Re: Open Source When?

Post by adriman » Mon Jan 06, 2014 8:22 pm

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

UkrZilla
Posts: 65
Joined: Sun Dec 15, 2013 8:34 am

Re: Open Source When?

Post by UkrZilla » Mon Jan 06, 2014 8:58 pm

I have no radius server and can't check it out (

UkrZilla
Posts: 65
Joined: Sun Dec 15, 2013 8:34 am

Re: Open Source When?

Post by UkrZilla » Tue Jan 07, 2014 8:09 pm

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.

gavstah
Posts: 61
Joined: Wed Jun 05, 2013 11:33 pm
Location: Glen Allen, Virginia USA
Contact:

Re: Open Source When?

Post by gavstah » Fri Jan 10, 2014 5:59 pm

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.
Top Punkawallah
The VPN Company
http://goo.gl/iu6wG

adriman
Posts: 7
Joined: Mon Jan 06, 2014 2:50 pm

Re: Open Source When?

Post by adriman » Thu Jan 16, 2014 8:11 am

Does anyone know if there is any API or an easy way to add/delete multiple clients ?

inten
Posts: 370
Joined: Fri Oct 18, 2013 8:15 am
Location: All around the world
Contact:

Re: Open Source When?

Post by inten » Thu Jan 16, 2014 9:07 am

vpncmd or you can use the source code to create your own small agent.
When you don't like the answer, change the question.
Cheers,
Team.

VPNHPanel.com
This account is not associated to SoftEther project.

Post Reply