Archive
Technical Tip : Forticlient LDAP users are getting…

Technical Tip : Forticlient LDAP users are getting…

2024-11-25 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

Adobe Creative Campus | Indian River State College KSA VPN Free Saudi Arabia VPN for PC / Mac / Windows 7.8.10 9.2 Midlatitude Cyclones How to Fix High Ping in UFL How to Set Up and Use the ExpressVPN App for Raspberry Pi
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