0 votes

Hello!

In the recent wks a couple users are unable to log in remotely using VPN.
The Dial-In/Remote Access Permission is set to allow access when viewing thru Adaxes.
It's also correct when viewing through AD, however the user was/is unable to logon.

When we deny access and save. Then allow access and save via AD, the user is able to login.
When this is done via Adaxes, the user is unable to login.

We also checked the msNPAllowDialin in both circumstances and it was set to true.

Is there something else in Adaxes that should be checked for this option to work when modified via Adaxes?

Please advise.

Thanks!

by (1.7k points)

1 Answer

0 votes
by (216k points)
selected by
Best answer

Hello,

It is a known issue in Adaxes that we are going to address in the nearest future. The thing is that when you enable Dial-in for a user, Adaxes sets the msNPAllowDialin property to True, which is sufficient in most cases. However, from our recent findings, in certain cases, when enabling Dial-in for a user, it is also necessary to set the Remote Desktop Settings (userParameters) property to the following value:

m:                    d                               

To workaround the issue until a fix is available, you can enable users for dial-in with the help of a PowerShell script. You can create a separate Custom Command that enables user for dial-in or add the script to your existing Business Rules, Custom Commands and Scheduled Tasks that enable the user for dial-in.

To create a Custom Command that enables Dial-in for users:

  1. Create a new Custom Command.

  2. On the 2nd step of the Create Custom Command wizard, select the User object type.

  3. On the 3rd step, add the Run a program or PowerShell script action and paste the following script:

     $strValue = "m:                    d                              " # TODO: modify me
    
     $binaryValue = [System.Text.Encoding]::UTF8.GetBytes($strValue)
     $Context.TargetObject.Put("msNPAllowDialin", $True)
     $Context.TargetObject.Put("userParameters", $binaryValue)
     $Context.TargetObject.SetInfo()

    The script above sets the msNPAllowDialin property to True, and also modifies the Remote Desktop Settings property.

0

Thanks. I'll give that a try.

0

hi-

This does not work. I've implemented the script but still unable to use VPN.

Please advise.

0

Hello,

To help us troubleshoot the issue, can you do the following:

  1. Export a user that is not enabled for VPN to a LDIF file. For information on how to do this, see Exporting Directory Objects.
  2. Enable the user for VPN using Adaxes and export to another LDIF file.
  3. Enable the user for VPN using AD native functionality and export to one more LDIF file.
  4. Send all the three files to our support e-mail (support@adaxes.com).
0

files sent.

0

It looks like in your case, another default value is set for the Remote Desktop Settings property. Use the following version of the script in your Custom Command:

$strValue = "m:                    d`t                        " # TODO: modify me

$binaryValue = [System.Text.Encoding]::UTF8.GetBytes($strValue)
$Context.TargetObject.Put("msNPAllowDialin", $True)
$Context.TargetObject.Put("userParameters", $binaryValue)
$Context.TargetObject.SetInfo()
0

this works!

Thank You

Related questions

0 votes
1 answer

Are the logs still accessable using the "logging" link in the administrator console? What about the web console? What is the recommended setting for local log ... function within ADAXES to cleanup remote logs after they are past our retention requirements?

asked Jul 12, 2023 by stevehalvorson (110 points)
0 votes
1 answer

We use TOPdesk as our ITSM solution. Several departments are able to create new users. When a create user task fails we would like to receive the alert as the Adaxes ... Adaxes to sent out the incident to our TOPdesk. Is there a solution for this?

asked Oct 5, 2023 by mrkvd16 (20 points)
0 votes
1 answer

Hi, I copied report "recently created users" and added a parameter to check for specific value in extensionAttribute3. If this attributes starts with e.g. value "startdate" , only those users ... $null, * , %%, ? , ...) Any idea how to build the report?

asked Jul 7, 2023 by wintec01 (1.1k points)
0 votes
1 answer

Is it possible to grant selected user option to add custom license plan (or just subset of its licenses) to given user(s) using web interface?

asked Feb 28, 2023 by KIT (910 points)
0 votes
1 answer

I came across Adaxes, and thought it looked interesting, but as an IT provider, providing system administration for multiple small companies, the pricing would never be ... some administrative accounts/helpdesk access to only a selection of the companies, etc?

asked Feb 3, 2023 by he (20 points)
3,350 questions
3,051 answers
7,791 comments
545,067 users