Changes between Version 10 and Version 11 of ldapiam2018


Ignore:
Timestamp:
Sep 12, 2018, 1:56:11 PM (6 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ldapiam2018

    v10 v11  
    153153sudo cp /etc/ssl/certs/ca_server.pem /etc/ldap/ca_certs.pem
    154154}}}
    155 Now, we can adjust the system-wide configuration file for the OpenLDAP utilities. Open up the configuration file in your text editor with sudo privileges:
     155You should now check your connections to use STARTTLS by passing the '''-Z''' option when using the OpenLDAP utilities. You can force STARTTLS upgrade by passing it twice. Test this by typing:
     156{{{
     157ldapwhoami -H ldap:// -x -ZZ
     158}}}
     159This forces a STARTTLS upgrade. If this is successful, you should see:
     160{{{
     161anonymous
     162}}}
     163As we haven't configure the client-side you should see an '''error'''
     164
     165Now, lets adjust the system-wide configuration file for the OpenLDAP utilities. Open up the configuration file in your text editor with sudo privileges:
    156166{{{
    157167sudo nano /etc/ldap/ldap.conf
     
    164174Save and close the file.
    165175
    166 You should now be able to upgrade your connections to use STARTTLS by passing the '''-Z''' option when using the OpenLDAP utilities. You can force STARTTLS upgrade by passing it twice. Test this by typing:
     176Test STARTTTLS again by typing:
    167177{{{
    168178ldapwhoami -H ldap:// -x -ZZ
    169179}}}
    170 This forces a STARTTLS upgrade. If this is successful, you should see:
    171 {{{
    172 STARTTLS success
    173 
     180Now you should see:
     181{{{
    174182anonymous
    175183}}}