Document
Technical Tip : Forticlient LDAP users are getting…

Technical Tip : Forticlient LDAP users are getting…

SSL - VPN tunnel mode is enable in the firewall and the Ldap user are import to the FortiGate .So it is is is necessary to make sure the actual LDAP u

Related articles

JioGames Cloud Gaming launched in Beta: Play 50+ Games for Free 无需公网IP,任何地点免费远程访问威联通NAS的方法_NAS存储_什么值得买 Top 5 Urban VPN Alternatives for Better Performance Cloud gaming explained: what is it, and what services are available? How to Fix ProtonVPN Not Connecting in India [Easy Guide]
SSL – VPN tunnel mode is enable in the firewall and the Ldap user are import to the FortiGate .

So it is is is necessary to make sure the actual LDAP user name and the user import in the Fortigate must be the same , if not we would get a ‘ credential or SSL VPN configuration is wrong ( -7200 ) ‘ error .

Check the below-mentioned output.

# config user local
    edit “test”   <—– Name of the user in the firewall.
        set status enable
        set type ldap


Since the username in firewall and ldap is the same authentication is success and two factor worked.

 

Post entering the Token the VPN connection is established.

 

Now by mistake, if the ldap user is saved with a different user name then VPN will not work.

# config user local
    edit ” test ”  <—– The name from test to Test has been changed.
        set status enable
        set type LDAP


Trying to connect the VPN but it is not working.

 

It is because of the case sensitivity, and post-making the below-mentioned changes the VPN is connected.

# config user local
    edit ” test “
        set status enable
        set type ldap
        set username-case-sensitivity <—– To set username-case-sensitivity disable.
end