1. FreeBSD 10 as a PXE Server (isc-dhcp)

    In a previous post I used FreeBSD 9.2 as a DHCP server. This is basically the sequel of that post. We're going to enable PXE booting by using TFTP and NFS to serve the files from. Let's go ahead and install the dhcpd server package:

    pkg install isc-dhcp43-server-4.3 …

  2. Reducing the FreeBSD boot countdown time

    This is just a quick note to myself so I don't forget. If you're looking on how to reduce the boot countdown time on FreeBSD 9 and 10 this is how you do it:

    Edit /boot/defaults/loader.conf

    Find the line:

    #autoboot_delay="10"
    

    Uncomment and change it to a …



  3. Notes on setting up the IPFW firewall

    This isn't so much of a proper how-to, but mostly notes to self on how to quickly setup IPFW on FreeBSD 9.

    To enable IPFW:

    Open up /etc/rc.conf and add the following lines:

    firewall_enable="YES" #Enables the firewall - the most important line :)
    firewall_logging="YES" #optional - enables logging - logs …


  4. Jails on FreeBSD 9.2 without Warden :)

    I've been wanting to get a little deeper with Jails so I can learn the Jails system better - nothing wrong with Warden, but to learn more I need to "bypass the GUI". I went ahead and installed vanilla FreeBSD 9.2 and this is what it took to get the …


  5. Simple NFS

    Hi all,

    So those are my quick notes on setting up NFS on FreeBSD 9.1.

    This is based on the handbook and partly on the FreeBSD Diary.

    Server Side

    On the server side, add the following inside /etc/rc.conf:

    rpcbind_enable="YES"
    nfs_server_enable="YES"
    mountd_enable="YES"
    mountd_flags="-r"
    

    Now …




Page 2 / 5