Create an account


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Fedora - How to Build a Netboot Server, Part 2

#1
How to Build a Netboot Server, Part 2

<div style="margin: 5px 5% 10px 5%;"><img src="http://www.sickgaming.net/blog/wp-content/uploads/2018/12/how-to-build-a-netboot-server-part-2.png" width="1024" height="819" title="" alt="" /></div><div><p>The article <a href="https://fedoramagazine.org/how-to-build-a-netboot-server-part-1/">How to Build a Netboot Server, Part 1</a> showed you how to create a netboot image with a “liveuser” account whose home directory lives in volatile memory. Most users probably want to preserve files and settings across reboots, though. So this second part of the netboot series shows how to reconfigure the netboot image from part one so that <a href="https://en.wikipedia.org/wiki/Active_Directory" target="_blank" rel="noopener">Active Directory</a> user accounts can log in and their home directories can be automatically mounted from a NFS server.</p>
<p>Part 3 of this series will show how to make an interactive and centrally-configurable iPXE boot menu for the netboot clients.</p>
<p><span id="more-23320"></span></p>
<h2>Setup NFS4 Home Directories with KRB5 Authentication</h2>
<p>Follow the directions from the previous post “<a href="https://fedoramagazine.org/secure-nfs-home-directories-kerberos" target="_blank" rel="noopener">Share NFS Home Directories Securely with Kerberos</a>,” then return here.</p>
<h2>Remove the Liveuser Account</h2>
<p>Remove the “liveuser” account created in part one of this series:</p>
<pre>$ sudo -i # sed -i '/automaticlogin/Id' /fc28/etc/gdm/custom.conf # rm -f /fc28/etc/sudoers.d/liveuser # for i in passwd shadow group gshadow; do sed -i '/^liveuser:/d' /fc28/etc/$i; done</pre>
<h2>Configure NTP, KRB5 and SSSD</h2>
<p>Next, we will need to duplicate the NTP, KRB5, and SSSD configuration that we set up on the server in the client image so that the same accounts will be available:</p>
<pre># MY_HOSTNAME=$(&lt;/etc/hostname) # MY_DOMAIN=${MY_HOSTNAME#*.} # dnf -y --installroot=/fc28 install ntp krb5-workstation sssd # cp /etc/ntp.conf /fc28/etc # chroot /fc28 systemctl enable ntpd.service # cp /etc/krb5.conf.d/${MY_DOMAIN%%.*} /fc28/etc/krb5.conf.d # cp /etc/sssd/sssd.conf /fc28/etc/sssd</pre>
<p>Reconfigure sssd to provide authentication services, in addition to the identification service already configured:</p>
<pre># sed -i '/services =/s/$/, pam/' /fc28/etc/sssd/sssd.conf</pre>
<p>Also, ensure none of the clients attempt to update the computer account password:</p>
<pre># sed -i '/id_provider/a \ \ ad_maximum_machine_account_password_age = 0' /fc28/etc/sssd/sssd.conf </pre>
<p>Also, copy the <em>nfsnobody</em> definitions:</p>
<pre># for i in passwd shadow group gshadow; do grep "^nfsnobody:" /etc/$i &gt;&gt; /fc28/etc/$i; done</pre>
<h2>Join Active Directory</h2>
<p>Next, you’ll perform a chroot to join the client image to Active Directory. Begin by deleting any pre-existing computer account with the same name your netboot image will use:</p>
<pre># MY_USERNAME=jsmith # MY_CLIENT_HOSTNAME=$(&lt;/fc28/etc/hostname) # adcli delete-computer "${MY_CLIENT_HOSTNAME%%.*}" -U "$MY_USERNAME"</pre>
<p>Also delete the <em>krb5.keytab</em> file from the netboot image if it exists:</p>
<pre># rm -f /fc28/etc/krb5.keytab</pre>
<p>Perform a chroot into the netboot image:</p>
<pre># for i in dev dev/pts dev/shm proc sys run; do mount -o bind /$i /fc28/$i; done # chroot /fc28 /usr/bin/bash --login</pre>
<p>Perform the join:</p>
<pre># MY_USERNAME=jsmith # MY_HOSTNAME=$(&lt;/etc/hostname) # MY_DOMAIN=${MY_HOSTNAME#*.} # MY_REALM=${MY_DOMAIN^^} # MY_OU="cn=computers,dc=${MY_DOMAIN//./,dc=}" # adcli join $MY_DOMAIN --login-user="$MY_USERNAME" --computer-name="${MY_HOSTNAME%%.*}" --host-fqdn="$MY_HOSTNAME" --user-principal="host/$MY_HOSTNAME@$MY_REALM" --domain-ou="$MY_OU"</pre>
<p>Now log out of the chroot and clear the root user’s command history:</p>
<pre># logout # for i in run sys proc dev/shm dev/pts dev; do umount /fc28/$i; done # &gt; /fc28/root/.bash_history</pre>
<h2>Install and Configure PAM Mount</h2>
<p>We want our clients to automatically mount the user’s home directory when they log in. To accomplish this, we’ll use the “pam_mount” module. Install and configure <em>pam_mount:</em></p>
<pre># dnf install -y --installroot=/fc28 pam_mount # cat &lt;&lt; END &gt; /fc28/etc/security/pam_mount.conf.xml &lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;!DOCTYPE pam_mount SYSTEM "pam_mount.conf.xml.dtd"&gt; &lt;pam_mount&gt; &lt;debug enable="0" /&gt; &lt;volume uid="1400000000-1499999999" fstype="nfs4" server="$MY_HOSTNAME" path="/home/%(USER)" mountpoint="/home/%(USER)" options="sec=krb5" /&gt; &lt;mkmountpoint enable="1" remove="0" /&gt; &lt;msg-authpw&gt;Password:&lt;/msg-authpw&gt; &lt;/pam_mount&gt; END</pre>
<p>Reconfigure PAM to use <em>pam_mount:</em></p>
<pre># dnf install -y patch # cp -r /fc28/usr/share/authselect/default/sssd /fc28/etc/authselect/custom # echo 'initgroups: files' &gt;&gt; /fc28/etc/authselect/custom/sssd/nsswitch.conf # patch /fc28/etc/authselect/custom/sssd/system-auth &lt;&lt; END @@ -12 +12,2 @@ -auth sufficient pam_sss.so forward_pass +auth requisite pam_mount.so {include if "with-pammount"} +auth sufficient pam_sss.so {if "with-pammount":use_first_pass|forward_pass} @@ -35,2 +36,3 @@ session required pam_unix.so +session optional pam_mount.so {include if "with-pammount"} session optional pam_sss.so END # patch /fc28/etc/authselect/custom/sssd/password-auth &lt;&lt; END @@ -9 +9,2 @@ -auth sufficient pam_sss.so forward_pass +auth requisite pam_mount.so {include if "with-pammount"} +auth sufficient pam_sss.so {if "with-pammount":use_first_pass|forward_pass} @@ -32,2 +33,3 @@ session required pam_unix.so +session optional pam_mount.so {include if "with-pammount"} session optional pam_sss.so END # chroot /fc28 authselect select custom/sssd with-pammount --force</pre>
<p>Also ensure the NFS server’s hostname is always resolvable from the client:</p>
<pre># MY_IP=$(host -t A $MY_HOSTNAME | awk '{print $4}') # echo "$MY_IP $MY_HOSTNAME ${MY_HOSTNAME%%.*}" &gt;&gt; /fc28/etc/hosts</pre>
<p>Optionally, allow all users to run <em>sudo:</em></p>
<pre># echo '%users ALL=(ALL) NOPASSWD: ALL' &gt; /fc28/etc/sudoers.d/users</pre>
<h2>Convert the NFS Root to an iSCSI Backing-Store</h2>
<p>Current versions of <em>nfs-utils</em> may have difficulty establishing a second connection from the client back to the NFS server for home directories when an nfsroot connection is already established. The client hangs when attempting to access the home directory. So, we will work around the problem by using a different protocol (iSCSI) for sharing our netboot image.</p>
<p>First chroot into the image to reconfigure its initramfs for booting from an iSCSI root:</p>
<pre># for i in dev dev/pts dev/shm proc sys run; do mount -o bind /$i /fc28/$i; done # chroot /fc28 /usr/bin/bash --login # dnf install -y iscsi-initiator-utils # sed -i 's/nfs/iscsi/' /etc/dracut.conf.d/netboot.conf # echo 'omit_drivers+=" qedi "' &gt; /etc/dracut.conf.d/omit-qedi.conf # echo 'blacklist qedi' &gt; /etc/modprobe.d/blacklist-qedi.conf # KERNEL=$(ls -c /lib/modules | head -n 1) # INITRD=$(find /boot -name 'init*' | grep -m 1 $KERNEL) # dracut -f $INITRD $KERNEL # logout # for i in run sys proc dev/shm dev/pts dev; do umount /fc28/$i; done # &gt; /fc28/root/.bash_history</pre>
<p>The <em>qedi</em> driver broke iscsi during testing, so it’s been disabled here.</p>
<p>Next, create a fc28.img <a href="https://en.wikipedia.org/wiki/Sparse_file" target="_blank" rel="noopener">sparse file</a>. This file serves as the iSCSI target’s backing store:</p>
<pre># FC28_SIZE=$(du -ms /fc28 | cut -f 1) # dd if=/dev/zero of=/fc28.img bs=1MiB count=0 seek=$(($FC28_SIZE*2))</pre>
<p>(If you have one available, a separate partition or disk drive can be used instead of creating a file.)</p>
<p>Next, format the image with a filesystem, mount it, and copy the netboot image into it:</p>
<pre># mkfs -t xfs -L NETROOT /fc28.img # TEMP_MNT=$(mktemp -d) # mount /fc28.img $TEMP_MNT # cp -a /fc28/* $TEMP_MNT # umount $TEMP_MNT</pre>
<p>During testing using SquashFS, the client would occasionally stutter. It seems that SquashFS does not perform well when doing random I/O from a multiprocessor client. (See also <a href="https://chrisdown.name/2018/04/17/kernel-adventures-the-curious-case-of-squashfs-stalls.html" target="_blank" rel="noopener">The curious case of stalled squashfs reads</a>.) If you want to improve throughput performance with filesystem compression, <a href="https://en.wikipedia.org/wiki/ZFS" target="_blank" rel="noopener">ZFS</a> is probably a better option.</p>
<p>If you need extremely high throughput from the iSCSI server (say, for hundreds of clients), it might be possible to <a href="https://en.wikipedia.org/wiki/Load_balancing_(computing)" target="_blank" rel="noopener">load balance</a> a <a href="http://docs.ceph.com/docs/mimic/rbd/iscsi-overview/" target="_blank" rel="noopener">Ceph</a> cluster. For more information, see <a href="https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/load_balancer_administration/ceph_example" target="_blank" rel="noopener">Load Balancing Ceph Object Gateway Servers with HAProxy and Keepalived</a>.</p>
<h2>Install and Configure iSCSI</h2>
<p>Install the <em>scsi-target-utils</em> package which will provide the iSCSI daemon for serving our image out to our clients:</p>
<pre># dnf install -y scsi-target-utils</pre>
<p>Configure the iSCSI daemon to serve the <em>fc28.img</em> file:</p>
<pre># MY_REVERSE_HOSTNAME=$(echo $MY_HOSTNAME | tr '.' "\n" | tac | tr "\n" '.' | cut -b -${#MY_HOSTNAME}) # cat &lt;&lt; END &gt; /etc/tgt/conf.d/fc28.conf &lt;target iqn.$MY_REVERSE_HOSTNAME:fc28&gt; backing-store /fc28.img readonly 1 &lt;/target&gt; END</pre>
<p>The leading <em>iqn.</em> is expected by <em>/usr/lib/dracut/modules.d/40network/net-lib.sh.</em></p>
<p>Add an exception to the firewall and enable and start the service:</p>
<pre># firewall-cmd --add-service=iscsi-target # firewall-cmd --runtime-to-permanent # systemctl enable tgtd.service # systemctl start tgtd.service</pre>
<p>You should now be able to see the image being shared with the <em>tgtadm</em> command:</p>
<pre># tgtadm --mode target --op show</pre>
<p>The above command should output something similar to the following:</p>
<pre>Target 1: iqn.edu.example.server-01:fc28 System information: Driver: iscsi State: ready I_T nexus information: LUN information: LUN: 0 Type: controller SCSI ID: IET 00010000 SCSI SN: beaf10 Size: 0 MB, Block size: 1 Online: Yes Removable media: No Prevent removal: No Readonly: No SWP: No Thin-provisioning: No Backing store type: null Backing store path: None Backing store flags:   LUN: 1 Type: disk SCSI ID: IET 00010001 SCSI SN: beaf11 Size: 10488 MB, Block size: 512 Online: Yes Removable media: No Prevent removal: No Readonly: Yes SWP: No Thin-provisioning: No Backing store type: rdwr Backing store path: /fc28.img Backing store flags: Account information: ACL information: ALL</pre>
<p>We can now remove the NFS share that we created in part one of this series:</p>
<pre># rm -f /etc/exports.d/fc28.exports # exportfs -rv # umount /export/fc28 # rmdir /export/fc28 # sed -i '/^\/fc28 /d' /etc/fstab</pre>
<p>You can also delete the <em>/fc28</em> filesystem, but you may want to keep it for performing future updates.</p>
<h2>Update the ESP to use the iSCSI Kernel</h2>
<p>Ipdate the ESP to contain the iSCSI-enabled initramfs:</p>
<pre>$ rm -vf $HOME/esp/linux/*.fc28.* $ MY_KRNL=$(ls -c /fc28/lib/modules | head -n 1) $ cp $(find /fc28/lib/modules -maxdepth 2 -name 'vmlinuz' | grep -m 1 $MY_KRNL) $HOME/esp/linux/vmlinuz-$MY_KRNL $ cp $(find /fc28/boot -name 'init*' | grep -m 1 $MY_KRNL) $HOME/esp/linux/initramfs-$MY_KRNL.img </pre>
<p>Update the <em>boot.cfg</em> file to pass the new <em>root</em> and <em>netroot</em> parameters:</p>
<pre>$ MY_NAME=server-01.example.edu $ MY_EMAN=$(echo $MY_NAME | tr '.' "\n" | tac | tr "\n" '.' | cut -b -${#MY_NAME}) $ MY_ADDR=$(host -t A $MY_NAME | awk '{print $4}') $ sed -i "s! root=[^ ]*! root=/dev/disk/by-path/ip-$MY_ADDR:3260-iscsi-iqn.$MY_EMAN:fc28-lun-1 netroot=iscsi:$MY_ADDR::::iqn.$MY_EMAN:fc28!" $HOME/esp/linux/boot.cfg</pre>
<p>Now you just need to copy the updated files from your <em>$HOME/esp/linux</em> directory out to the ESPs of all your client systems. You should see results similar to what is shown in the below screenshot:</p>
<p><img class="alignnone wp-image-23701 size-large" src="http://www.sickgaming.net/blog/wp-content/uploads/2018/12/how-to-build-a-netboot-server-part-2.png" alt="" width="616" height="493" /></p>
<h2>Upgrading the Image</h2>
<p>First, make a copy of the current image:</p>
<pre># cp -a /fc28 /fc29</pre>
<p>Chroot into the new copy of the image:</p>
<pre># for i in dev dev/pts dev/shm proc sys run; do mount -o bind /$i /fc29/$i; done # chroot /fc29 /usr/bin/bash --login</pre>
<p>Allow updating the kernel:</p>
<pre># sed -i 's/^exclude=kernel-\*$/#exclude=kernel-*/' /etc/dnf/dnf.conf</pre>
<p>Perform the upgrade:</p>
<pre># dnf distro-sync -y --releasever=29</pre>
<p>Prevent the kernel from being updated:</p>
<pre># sed -i 's/^#exclude=kernel-\*$/exclude=kernel-*/' /etc/dnf/dnf.conf</pre>
<p>The above command is optional, but saves you from having to copy a new kernel out to the clients if you add or update a few packages in the image at some future time.</p>
<p>Clean up dnf’s package cache:</p>
<pre># dnf clean all </pre>
<p>Exit the chroot and clear root’s command history:</p>
<pre># logout # for i in run sys proc dev/shm dev/pts dev; do umount /fc29/$i; done # &gt; /fc29/root/.bash_history</pre>
<p>Create the iSCSI image:</p>
<pre># FC29_SIZE=$(du -ms /fc29 | cut -f 1) # dd if=/dev/zero of=/fc29.img bs=1MiB count=0 seek=$(($FC29_SIZE*2)) # mkfs -t xfs -L NETROOT /fc29.img # TEMP_MNT=$(mktemp -d) # mount /fc29.img $TEMP_MNT # cp -a /fc29/* $TEMP_MNT # umount $TEMP_MNT</pre>
<p>Define a new iSCSI target that points to our new image and export it:</p>
<pre># MY_HOSTNAME=$(&lt;/etc/hostname) # MY_REVERSE_HOSTNAME=$(echo $MY_HOSTNAME | tr '.' "\n" | tac | tr "\n" '.' | cut -b -${#MY_HOSTNAME}) # cat &lt;&lt; END &gt; /etc/tgt/conf.d/fc29.conf &lt;target iqn.$MY_REVERSE_HOSTNAME:fc29&gt; backing-store /fc29.img readonly 1 &lt;/target&gt; END # tgt-admin --update ALL</pre>
<p>Add the new kernel and initramfs to the ESP:</p>
<pre>$ MY_KRNL=$(ls -c /fc29/lib/modules | head -n 1) $ cp $(find /fc29/lib/modules -maxdepth 2 -name 'vmlinuz' | grep -m 1 $MY_KRNL) $HOME/esp/linux/vmlinuz-$MY_KRNL $ cp $(find /fc29/boot -name 'init*' | grep -m 1 $MY_KRNL) $HOME/esp/linux/initramfs-$MY_KRNL.img</pre>
<p>Update the <em>boot.cfg</em> in the ESP:</p>
<pre>$ MY_DNS1=192.0.2.91 $ MY_DNS2=192.0.2.92 $ MY_NAME=server-01.example.edu $ MY_EMAN=$(echo $MY_NAME | tr '.' "\n" | tac | tr "\n" '.' | cut -b -${#MY_NAME}) $ MY_ADDR=$(host -t A $MY_NAME | awk '{print $4}') $ cat &lt;&lt; END &gt; $HOME/esp/linux/boot.cfg #!ipxe kernel --name kernel.efi \${prefix}/vmlinuz-$MY_KRNL initrd=initrd.img ro ip=dhcp rd.peerdns=0 nameserver=$MY_DNS1 nameserver=$MY_DNS2 root=/dev/disk/by-path/ip-$MY_ADDR:3260-iscsi-iqn.$MY_EMAN:fc29-lun-1 netroot=iscsi:$MY_ADDR::::iqn.$MY_EMAN:fc29 console=tty0 console=ttyS0,115200n8 audit=0 selinux=0 quiet initrd --name initrd.img \${prefix}/initramfs-$MY_KRNL.img boot || exit END</pre>
<p>Finally, copy the files from your <em>$HOME/esp/linux</em> directory out to the ESPs of all your client systems and enjoy!</p>
</div>
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum software by © MyBB Theme © iAndrew 2016