1 / 28

CIT 470: Advanced Network and System Administration

Learn about machine lifecycle, automated installs, updates, and network configuration for advanced network and system administration. Understand the states of machines, state transitions, and the benefits of automating installs. Trust the vendor installation but also explore different install types such as hard disk imaging and scripted installs. Discover the features and components of auto-install and the use of PXE and disk imaging. Use tools like Clonezilla and Kickstart for efficient workstation management.

alleyner
Download Presentation

CIT 470: Advanced Network and System Administration

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CIT 470: Advanced Network and System Administration Workstations CIT 470: Advanced Network and System Administration

  2. Topics • Machine Lifecycle • Automated Installs • Updates • Network Configuration CIT 470: Advanced Network and System Administration

  3. Workstation Management CIT 470: Advanced Network and System Administration

  4. States of Machines New A new machine Clean OS installed, but not yet configured for environment. Configured Configured correctly for the operating environment. Unknown Misconfigured, broken, newly discovered, etc. Off Retired/surplussed CIT 470: Advanced Network and System Administration

  5. State Transitions Build Set up hardware and install OS. Initialize Configure for environment; often part of build. Update Install new software. Patch old software. Change configurations. CIT 470: Advanced Network and System Administration

  6. Why Automate Installs? • Save time. Boot the computer, then go do something else. • Ensure consistency. No chance of entering wrong input during install. Avoid user requests due to mistakes in config. What works on one desktop, works on all. • Fast system recovery. Rebuild system with auto-install vs. slow tapes. CIT 470: Advanced Network and System Administration

  7. Trusting the Vendor Installation Always reload the OS on new machines. • You need to configure the host for your env. • Eventually you’ll reload the OS on a desktop, leaving you with two platforms to support: the vendor OS install and your OS install. • Vendors change their OS images from time to time, so systems you bought today have a different OS from systems bought 6 months ago. CIT 470: Advanced Network and System Administration

  8. Install Types • Hard Disk Imaging Duplicate hard disk of installed system. Advantages: fast, simple. Disadvantages: need identical hardware, leads to many images, all of which must be updated manually when you make a change • Scripted Installs Installer accepts input from script. Advantages: flexible, systems can be different Disadvantages: more effort to setup initially CIT 470: Advanced Network and System Administration

  9. Auto-Install Features • Unattended Requires little or no human interaction. • Concurrent Multiple installs can be performed at once. • Scalable New clients added easily. • Flexible Configurable to do custom install types. CIT 470: Advanced Network and System Administration

  10. Auto-Install Components Boot Component Media (floppy or CD) Network (PXE) Network Configuration DHCP: IP addresses, netmasks, DNS Install Configuration Media (floppy or CD) Network (tftp, ftp, http, NFS) Install Data and Programs Network (tftp, ftp, http, NFS) CIT 470: Advanced Network and System Administration

  11. PXE Preboot eXecution Environment Intel standard for booting over the network. PXE BIOS loads kernel over network. Applications Diskless clients (use NFS for root disk.) Booting install program. How it works • Asks DHCP server for config (ip, net, tftp.) • Downloads pxelinux from tftp server. • Boots pxelinux kernel. • Kernel uses tftp’d filesystem image or NFS filesystem. CIT 470: Advanced Network and System Administration

  12. Disk Imaging 2-3. test client • Setup ftp server. • Install OS image on a test client. • Verify test client OS. • Copy image to server. • Boot clients with imaging media. • Clients pull image from ftp server. 4. Copy image 6. Pull img 5. deployment #1 6. Pull img 1. ftp server 5. deployment #2 CIT 470: Advanced Network and System Administration

  13. Disk Imaging Tools • Acronis TrueImage • Clonezilla (free) • g4u: Ghost for UNIX (free) • Symantec GHOST • System Imager (free) CIT 470: Advanced Network and System Administration

  14. Clonezilla CIT 470: Advanced Network and System Administration

  15. g4u CIT 470: Advanced Network and System Administration

  16. Kickstart Components Bootable media • Small bootstrap kernel and filesystem. • Uses DHCP server to configure system. Source machine • Network server: ftp, http, nfs. • Kickstart configuration file(s). • Install files (RPMs). Target machine • Machine on which you’re installing. • Boot with bootable media. CIT 470: Advanced Network and System Administration

  17. Kickstart Components http DHCP Server Source Machine Target Machine CIT 470: Advanced Network and System Administration

  18. Source Machine Setup • Start network service. • Copy install media--for each CD: mount /mnt/cdrom cp -var /mnt/cdrom/RedHat /usr/local/ks umount /mnt/cdrom/ • Create config files. Store under kickstart subdirectory. CIT 470: Advanced Network and System Administration

  19. Kickstart Configuration File Describes desired system configuration. Disk partition setup. Network configuration. Language and other configuration items. Package selection. Pre- and post-install scripts for customization. Creating a Kickstart file: Original install (located under /root) Kickstart Configurator application Manually CIT 470: Advanced Network and System Administration

  20. Kickstart Configurator CIT 470: Advanced Network and System Administration

  21. Configuration Options auth crypt, md5, nis, ldap, smb, krb5 network and firewall DHCP, static, firewall configuration part Create disk partitions: size, maxsize, grow. c.f. autopart, clearpart, log, raid. rootpw xconfig packages CIT 470: Advanced Network and System Administration

  22. Performing a Kickstart Install • Boot with install media RHEL CD #1 Bootable Kickstart media • Specify Kickstart file location Web: ks=http://<server>/<path> NFS: ks=http://<server>/<path> Floppy: ks=floppy PXE: ks CIT 470: Advanced Network and System Administration

  23. Auto-Install Tools DrakX: Mandriva Linux FAI, Preseed: Debian Linux Jumpstart: Solaris Kickstart: Red Hat Linux CIT 470: Advanced Network and System Administration

  24. Software Update Difficulties No physical access • Update process should work w/o physical access. Host may not be in known state • Prior updates may or may not have happened. • Sysadmins or users may have reconfigured. Hosts may not be there • Portable computers may not be on your network when you’re updating systems. Host may have live users • Some updates require no user access or reboots. CIT 470: Advanced Network and System Administration

  25. One, Some, Many Failed updates break someone’s machine. Vendor hasn’t tested updates in your env. One, some, many process mitigates risks One: Test update on one system first. Some: Test update on group of test systems that are representative of the target systems. Many: Schedule update for a time that limits disruption and update user systems. CIT 470: Advanced Network and System Administration

  26. Network Configuration What’s so bad about manual net settings? • It’s only an IP address and netmask. • What happens if you need to renumber? Use DHCP instead of manual settings • Make all changes on a single server. • Easy to change settings for entire network. • DHCP can assign static IPs as well as dynamic. CIT 470: Advanced Network and System Administration

  27. Key Points Desktop Lifecycle • New, clean, configured, unknown states. Automated Installs • Why: consistency, fast recovery, saves time. • Install types: imaging vs. scripted. • Components: boot, network, config, data. • Think about how Principles of SA apply. One, Some, Many approach to updates. CIT 470: Advanced Network and System Administration

  28. References • Mark Burgess, Principles of System and Network Administration, Wiley, 2000. • Aeleen Frisch, Essential System Administration, 3rd edition, O’Reilly, 2002. • R. Evard. "An analysis of unix system configuration." Proceedings of the 11th Systems Administration conference (LISA), page 179, http://www.usenix.org/publications/library/proceedings/lisa97/full_papers/20.evard/20_html/main.html, 1997 • Thomas Limoncelli, Christine Hogan, Strata Chalup, The Practice of System and Network Administration, 2nd ed, Limoncelli and Hogan, Addison-Wesley, 2007. • Evi Nemeth et al, UNIX System Administration Handbook, 3rd edition, Prentice Hall, 2001. CIT 470: Advanced Network and System Administration

More Related