Authentification RADIUS

Business solution to host your own OpenVPN server with web management interface and bundled clients.
Post Reply
RedwinX
OpenVpn Newbie
Posts: 2
Joined: Mon Aug 12, 2013 1:11 pm

Authentification RADIUS

Post by RedwinX » Mon Aug 12, 2013 1:18 pm

Hi,

I have actually a problem, I have an Active Directory, with a RADIUS Server and it's work perfectly. I created a rule which states that the user must be in a specific group for login. But for more security, I have create a rule which states that the MACHINE must be in a specific group for login too. But OpenVPN didn't send the information (name of machine ect...) to the AD. how to solve this problem ? Can we create a script for the client to send this information ?

Thanks and regards,

Ben

RedwinX
OpenVpn Newbie
Posts: 2
Joined: Mon Aug 12, 2013 1:11 pm

Re: Authentification RADIUS

Post by RedwinX » Wed Aug 14, 2013 12:11 pm

Hey,

I just make a script for windows :

Dim Shell
Dim CompName
Set Shell = Wscript.CreateObject ("Wscript.Shell")
CompName = Shell.ExpandEnvironmentStrings ("%COMPUTERNAME%")
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.CreateTextFile("output.txt", True)
objFile.WriteLine CompName

So now, how to send the "outpout.txt to openvpn, and send the information to AD for verify the machine ?

Regards,

Ben

Post Reply