Book Image

Network Administration with FreeBSD 7

By : Babak Farrokhi
Book Image

Network Administration with FreeBSD 7

By: Babak Farrokhi

Overview of this book

<p>This book is a guide to FreeBSD for network administrators; therefore it does not cover basic installation and configuration of FreeBSD, but is about using FreeBSD to build, secure, and maintain networks.<br /><br />After introducing the basic tools for monitoring the performance and security of the system the book moves on to cover using jails&acirc;&euro;&rdquo;FreeBSD virtual environments&acirc;&euro;&rdquo;to virtually run multiple instances of FreeBSD on the same hardware. Then it shows how to overcome the different bottlenecks that you may meet depending on the services you are running by tweaking different parameters to maintain a high performance from your FreeBSD server. Next it covers using the ifconfig utility to configure interfaces with different layer protocols and about connectivity testing and debugging tools. After covering using User PPP or Kernel PPP for Point-to-Point Protocol network configuration it explains basic IP forwarding in FreeBSD and the use of the built-in routing daemons, routed and route6d, which support RIPv1, RIPv2, RIPng, and RDISC. Next it covers the OpenOSPFD and OpenBGPD daemons that you can install to run OSPF and BGP on your host. Then it covers setup and configuration of IPFW and PF, and finally looks at some important internet services and how to set them up on your FreeBSD server.</p>
Table of Contents (19 chapters)
Network Administration with FreeBSD 7
Credits
About the Author
About the Reviewer
Preface

Introduction


Jails were introduced with several security and functionality improvements over the traditional chroot. While chroot was used to limit the scope of the file system for processes, jail is used to develop more complex virtualization scenarios, including running an almost full operating system inside a jail. This type of jail is commonly referred to as the Virtual Server. You can set up multiple jails on a host system (the actual operating system you installed on the physical hardware) that runs multiple, complete, FreeBSD systems running different software.

A virtual server is used when you want to test a new software or service in a test environment, without actually engaging the physical hardware. Another scenario is to set up jails for other people who want to have root access to the system. Giving root access of a jail, gives super-user power to users, without giving them full access to the host system. For example, different web hosting companies create jails and virtual dedicated...