0

I like to setup a Server and Workstation sort of network in linux (like we have Domain Controller in windows) where all the desktops login where authenicated with server, how this can be done.

I prefer CENTOS 5.4 for server and FEDORA 12 for dektop

Thanks in advance

3 Answers3

2

If you mean an active directory domain controller, there are articles describing how to authenticate using LDAP and extensions to the AD servers. The answer may be more involved that can be easily summed up here, so you might want to google for "fedora authenticate active directory" and find a tutorial on the webbertubes. Make sure you have decent backups ahead of time before modifying your servers.

Methods can vary depending on winbind, LDAP, Samba...you might have to sift through articles (and pay attention to dates, since you probably want what's most recent) to find a method that works in your situation.

Bart Silverstrim
  • 31,172
  • 9
  • 67
  • 87
1

There is a product called SME Server which appears to be CentOS preconfigured for use as a small office server.

It provides file and print sharing, email, internet connections, firewall, remote access, directory services, web hosting, backups and automatic updates. It is CentOS after all so you can install other software if you need to.

This should provide a good solution and I think meets your requirements and there is a community around it for further support and ideas.

It is also free to download.

Richard Holloway
  • 7,456
  • 2
  • 25
  • 30
0

Normally, you set up an LDAP server such as OpenLDAP and then tell boxes to authenticate against it. Alternatives are Kerberos and Samba.

alex
  • 1,329
  • 6
  • 9
  • OpenLDAP is a directory service. Kerberos provides authentication services. Samba is a set of utilities that reimplement the CIFS protocol on *nix. All three are complimentary components that do different things; they are not alternatives. – jamieb Mar 18 '10 at 23:40
  • I mean, setting up a) OpenLDAP and using pam_ldap, b) Kerberos with its own database and c) Samba as a PDC with tdbsam and Winbind. – alex Mar 22 '10 at 21:57