-2

Suppose we have a Lan with X clients workstations and Y servers, the servers are running different network services (web, e-mail, directory service...) both client and servers might run either Linux or Windows.

To consume these services users of the client workstations will need to install and configure client software (web client, mail client) on their machines.

Now If we have X=100 and the users are totally average users, is there any mean to automatically deploy configured client software in the client workstations?

Many configuration tools exists such as Puppet or Chef but they seem to be server oriented. Protocols Like DHCP serves only IP Addresses.

Is there any tool or network service that allow clients to autoconfigure themselves?

Chedy2149
  • 223
  • 4
  • 14

2 Answers2

4

To expand on Grant's answer, an ideal solution (in an all windows environment) would typically involve using three approaches to managing software and settings on client workstations.

  • You would use group policy (via active directory) to manage settings, permissions, configurations, and restrictions.

  • You would use WDS (Windows Deployment Services) to manage imaging of client workstations. WDS can be used to maintain a standard operating environment so that you can easily and rapidly deploy windows to a client computer with all the desired settings and applications pre-installed, and pre-configured.

  • You would use SCCM (System Center Configuration Manager) to provide ongoing maintenance for application deployment and device management. SCCM is a powerful tool, but is often overkill in smaller environments, where it's just easier to maintain a solid SOE using WDS.

blacklight
  • 1,389
  • 1
  • 10
  • 19
1

Of course there are.

In the windows world you have active directory with group policy. And imaging through windows deployment services or microsoft configuration manager or other tools.

Grant
  • 17,859
  • 14
  • 72
  • 103