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
Authentification RADIUS
-
- OpenVpn Newbie
- Posts: 2
- Joined: Mon Aug 12, 2013 1:11 pm
Re: Authentification RADIUS
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
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