Difference between revisions of "Host resolution using openLDAP"
From Notes_Wiki
m |
m |
||
Line 1: | Line 1: | ||
[[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[LDAP servers]] > [[OpenLDAP]] > [[Host resolution using openLDAP|Host resolution]] | |||
To use ldap for host resolution use following steps: | To use ldap for host resolution use following steps: | ||
Line 26: | Line 25: | ||
[[Main Page|Home]] > [[CentOS]] > [[CentOS 6.x]] > [[LDAP servers]] > [[OpenLDAP]] > [[Host resolution using openLDAP|Host resolution]] |
Latest revision as of 15:18, 13 March 2022
Home > CentOS > CentOS 6.x > LDAP servers > OpenLDAP > Host resolution
To use ldap for host resolution use following steps:
- Verify that 'nis' schema is included in slapd configuratiodn
- Create an ou for hosts using
- dn: ou=hosts,dc=virtual-labs,dc=ac,dc=in
- objectClass: organizationalUnit
- ou: hosts
- description: Group of important hosts for converting host names to IP addresses
- Create sample host entry using
- dn: cn=ldap,ou=hosts,dc=virtual-labs,dc=ac,dc=in
- objectClass: ipHost
- objectClass: device
- ipHostNumber: 10.4.12.152
- cn: ldap
- cn: ldap.virtual-labs.ac.in
Client configuration steps are mentioned at Configuring host to use LDAP for host resolution
Home > CentOS > CentOS 6.x > LDAP servers > OpenLDAP > Host resolution