0

How portable is a DNS server when it comes to LDAP, especially Kerberos which I am using for authentication? Meaning, how much do I have to change to use the same LDAP server with 2 different DNS servers as long as they use the same names & IP addresses, etc.? Specifically, I am using an LDAP server on Fedora & the DNS servers on Ubuntu, latest stable versions for each.

trysis
  • 385
  • 1
  • 4
  • 10

1 Answers1

0

Just make sure the same dns records exist (A, SRV if needed) and you'll be fine. A better option is to have one dns a slave of the other so you don't have to worry about the replication

Sirex
  • 5,447
  • 2
  • 32
  • 54
  • I will probably not be able to have 2 servers. I know that's recommended, but this is a school project so it needs less. (In case you're worried about helping me with my homework, the teacher pretty much told us nothing.) – trysis Nov 28 '13 at 19:19
  • You are saying as long as the records are the same I should be fine? This is what I was hoping. How about on the LDAP side? Will I need to change anything? – trysis Nov 28 '13 at 19:51
  • nope. the ldap server is just an ldap server. the only time youll get into a mess is if you have multiple ldap servers and you want to contact them on one name (failing over if one breaks) and also use SSL. Otherwise you should be fine as long as your dns records on each dns server are the same. All dns does is convert the name to an IP. – Sirex Nov 28 '13 at 20:15