3

What do compat mean in name service switch? /etc/nsswitch.conf

Codler
  • 178
  • 1
  • 3
  • 8

1 Answers1

8

Compat is used to support the +/- features of passwdand group local files. Historically if you wanted to include information from a different source e.g. NIS, you could put an entry in your password/group file +username +@netgroup which would cause the information for username or netgroup to be read from NIS. Mostly a single + was put at the end of the file to indicate that the whole NIS map should be used.

With NSS this is no longer required as you can now just specify the data sources in /etc/nsswitch.conf e.g.

passwd: files nisplus nis
MadHatter
  • 79,770
  • 20
  • 184
  • 232
user9517
  • 115,471
  • 20
  • 215
  • 297
  • 2
    +1, absolutely, Iain. But it's not entirely useless these days, as in some cases I do still use the `+@netgroup` entry alongside `compat` to eg allow only database developers to have logins on a dev oracle box, without either having to duplicate their login in `/etc/passwd` (making NIS redundant) or having to allow everyone with a NIS entry to be valid on that box. Oh, and please forgive me for putting in a (possibly missing) colon. – MadHatter Nov 16 '11 at 11:08