Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
pfSense 2.x Cookbook
pfSense 2.x Cookbook

pfSense 2.x Cookbook: Manage and maintain your network using pfSense , Second Edition

Arrow left icon
Profile Icon David Zientara
Arrow right icon
R$50 per month
Full star icon Full star icon Full star icon Full star icon Full star icon 5 (1 Ratings)
Paperback Dec 2018 298 pages 2nd Edition
eBook
R$80 R$218.99
Paperback
R$272.99
Subscription
Free Trial
Renews at R$50p/m
Arrow left icon
Profile Icon David Zientara
Arrow right icon
R$50 per month
Full star icon Full star icon Full star icon Full star icon Full star icon 5 (1 Ratings)
Paperback Dec 2018 298 pages 2nd Edition
eBook
R$80 R$218.99
Paperback
R$272.99
Subscription
Free Trial
Renews at R$50p/m
eBook
R$80 R$218.99
Paperback
R$272.99
Subscription
Free Trial
Renews at R$50p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

pfSense 2.x Cookbook

Essential Services

In this chapter, we will cover the following topics:

  • Configuring the DHCP server
  • Configuring the DHCP6 server
  • Configuring static DHCP mappings
  • Configuring the DHCP relay
  • Specifying alternate DNS servers
  • Configuring the DNS resolver
  • Configuring a stand-alone DNS server
  • Configuring dynamic DNS
  • Adding a wireless access point

Introduction

At this point, we have installed pfSense and performed much of the basic configuration. We have already done the following:

  • Determined our hardware requirements
  • Installed pfSense
  • Assigned and configured interfaces
  • Set up SSH access
  • Added VLANs, if necessary

Now we are ready to configure several of the essential services that our pfSense system will provide:

  • The DHCP/DHCP6 service will enable clients to obtain IP addresses automatically.
  • The DNS server will enable clients to resolve hostnames to IP addresses.
  • The dynamic DNS service will allow pfSense to update a host’s DNS record when that host’s IP address changes.

Configuring the DHCP server

This recipe describes how to configure the DHCP server. The DHCP server assigns an IP address to anyone who requests one.

Getting ready

In order to enable the DHCP server on an interface, that interface must have a static IP address. If you have followed the recipes in order, you should have at least one interface with a static IP address (the LAN interface). This example will show how to configure the DHCP server on the LAN interface.

How to do it...

  1. Navigate to Services | DHCP Server.
  2. Click on the LAN tab, if it isn’t selected already...

Configuring the DHCP6 server

This recipe describes how to configure the DHCP6 server. The DHCP6 server accepts DHCP6 requests from clients and assigns them IPv6 addresses from the pool of available addresses.

Getting ready

In order to enable the DHCP6 server on an interface, you must have at least one interface configured with a static IPv6 address. This was an option in the Configuring the LAN interface and the Configuring an optional interface recipes. If you did not configure any of the non-WAN interfaces with a static IPv6 address, you must first reconfigure at least one of them. If necessary, use the recipes in Chapter 1, Initial Configuration, as a guide. In this recipe, we will describe how to enable the DHCP6 server...

Configuring static DHCP mappings

This recipe describes how to add a static (IPv4) DHCP mapping in pfSense. A static mapping ensures that a client always receives the same IP address from the DHCP server.

Getting ready

In order to create a static DHCP mapping, you must have at least one interface on which the DHCP server is enabled. (You can only create static DHCP mappings on interfaces using the DHCP server).

How to do it...

There are two ways of creating a static DHCP mapping.

  1. Navigate to Services | DHCP and click on the LAN tab, if it isn’t selected already...

Configuring the DHCP relay

This recipe describes how to configure pfSense to relay DHCP request between broadcast domains. This serves as an alternative to pfSense acting as a DHCP server.

Getting ready

pfSense can only be configured as a DHCP relay if the DHCP server has been disabled on all interfaces. If necessary, disable the DHCP server first. To disable the DHCP server, do the following:

  1. Navigate to Services | DHCP Server.
  2. Click on the tab for the interface on which the DHCP server is enabled (for example, LAN).
  3. Uncheck the Enable DHCP Server on the interface checkbox.
  4. Click on the Save button.
  5. Repeat Steps 2 through 4 for each interface on which the DHCP server is enabled.
...

Specifying alternate DNS servers

This recipe describes how to configure pfSense to use DNS servers other than the ones provided by your WAN connection.

Getting ready

In most environments, routers rely on DHCP servers specified by the ISP through their WAN connection. For this reason, by default, pfSense has the Allow DNS server list to be overridden by DHCP/PPP on WAN option enabled. To specify alternate DNS servers manually, we will have to disable this option, which we will do in the following recipe.

How to do it...

  1. Navigate to System | General Setup.
  2. In the DNS Servers...

Configuring the DNS resolver

This recipe describes how to configure the DNS resolver in pfSense. The DNS resolver allows pfSense to act as a DNS server.

Getting ready

The DNS resolver allows pfSense to resolve DNS requests using hostnames obtained by the DHCP service, statically obtained DHCP mappings, or manually obtained information. The DNS resolver can also forward all DNS requests for a particular domain to a server specified manually.

Prior to pfSense Version 2.2, DNS forwarder was the default DNS server for pfSense. Version 2.2 and later iterations use Unbound (DNS resolver) as the default DNS server; however, DNS forwarder is still available.

...

Configuring a stand-alone DHCP/DNS server

This recipe describes how to configure pfSense as a stand-alone DHCP and DNS server.

How to do it...

  1. Configure pfSense as a DHCP server. See the Configuring the DHCP server recipe for details.
  2. Create DHCP mappings for every device in the system that will obtain its IP address automatically through DHCP. See the Creating static DHCP mappings recipe for details.
  1. Navigate to System | General Setup.
  1. Ensure that no other DNS servers are specified.
  2. Check the Allow DNS server list to be overridden by DHCP/PPP on WAN checkbox. This will enable pfSense to resolve external addresses using the DNS servers provided by your ISP through your WAN connection.
  3. Click on the Save button.
  4. Navigate...

Introduction


At this point, we have installed pfSense and performed much of the basic configuration. We have already done the following:

  • Determined our hardware requirements
  • Installed pfSense
  • Assigned and configured interfaces
  • Set up SSH access
  • Added VLANs, if necessary

 

Now we are ready to configure several of the essential services that our pfSense system will provide:

  • The DHCP/DHCP6 service will enable clients to obtain IP addresses automatically.
  • The DNS server will enable clients to resolve hostnames to IP addresses.
  • The dynamic DNS service will allow pfSense to update a host’s DNS record when that host’s IP address changes.

Configuring the DHCP server


This recipe describes how to configure the DHCP server. The DHCP server assigns an IP address to anyone who requests one.

Getting ready

In order to enable the DHCP server on an interface, that interface must have a static IP address. If you have followed the recipes in order, you should have at least one interface with a static IP address (the LAN interface). This example will show how to configure the DHCP server on the LAN interface.

How to do it...

  1. Navigate toServices | DHCP Server.
  2. Click on the LAN tab, if it isn’t selected already.
  3. Under General Options, check the Enable DHCP server on LAN interface checkbox:
  1. In theRangeedit boxes, enter a range of IP addresses for the DHCP server to assign to clients. The range must be contiguous and within the range listed next toAvailable range.
  2. If you do not need more than a single range of IP addresses, proceed to Step 6. Otherwise, perform the following steps to add multiple IP address pools:
    • UnderAdditional Pools, click on...
Left arrow icon Right arrow icon

Key benefits

  • Build a high-availability fault-tolerant security system with pfSense 2.x
  • Leverage the latest version of pfSense to secure your cloud environment
  • A recipe-based guide that will help you enhance your on-premise and cloud security principles

Description

pfSense is an open source distribution of the FreeBSD-based firewall that provides a platform for ?exible and powerful routing and firewalling. The versatility of pfSense presents us with a wide array of configuration options, which makes determining requirements a little more difficult and a lot more important compared to other offerings. pfSense 2.x Cookbook – Second Edition starts by providing you with an understanding of how to complete the basic steps needed to render a pfSense firewall operational. It starts by showing you how to set up different forms of NAT entries and firewall rules and use aliases and scheduling in firewall rules. Moving on, you will learn how to implement a captive portal set up in different ways (no authentication, user manager authentication, and RADIUS authentication), as well as NTP and SNMP configuration. You will then learn how to set up a VPN tunnel with pfSense. The book then focuses on setting up traffic shaping with pfSense, using either the built-in traffic shaping wizard, custom ?oating rules, or Snort. Toward the end, you will set up multiple WAN interfaces, load balancing and failover groups, and a CARP failover group. You will also learn how to bridge interfaces, add static routing entries, and use dynamic routing protocols via third-party packages.

Who is this book for?

This book is intended for all levels of network administrators. If you are an advanced user of pfSense, then you can flip to a particular recipe and quickly accomplish the task at hand; if you are new to pfSense, on the other hand, you can work through the book chapter by chapter and learn all of the features of the system from the ground up.

What you will learn

  • Configure the essential pfSense services (namely, DHCP, DNS, and DDNS)
  • Create aliases, firewall rules, NAT port-forward rules, and rule schedules
  • Create multiple WAN interfaces in load-balanced or failover configurations
  • Configure firewall redundancy with a CARP firewall failover
  • Configure backup/restoration and automatic configuration-file backup
  • Configure some services and perform diagnostics with command-line utilities

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Dec 17, 2018
Length: 298 pages
Edition : 2nd
Language : English
ISBN-13 : 9781789806427
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Dec 17, 2018
Length: 298 pages
Edition : 2nd
Language : English
ISBN-13 : 9781789806427
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
R$50 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
R$500 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just R$25 each
Feature tick icon Exclusive print discounts
R$800 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just R$25 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total R$ 852.97
Mastering pfSense
R$306.99
pfSense 2.x Cookbook
R$272.99
Learn pfSense 2.4
R$272.99
Total R$ 852.97 Stars icon

Table of Contents

12 Chapters
Initial Configuration Chevron down icon Chevron up icon
Essential Services Chevron down icon Chevron up icon
Firewall and NAT Chevron down icon Chevron up icon
Additional Services Chevron down icon Chevron up icon
Virtual Private Networking Chevron down icon Chevron up icon
Traffic Shaping Chevron down icon Chevron up icon
Redundancy, Load Balancing, and Failover Chevron down icon Chevron up icon
Routing and Bridging Chevron down icon Chevron up icon
Services and Maintenance Chevron down icon Chevron up icon
Backing Up and Restoring pfSense Chevron down icon Chevron up icon
Determining Hardware Requirements Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Full star icon 5
(1 Ratings)
5 star 100%
4 star 0%
3 star 0%
2 star 0%
1 star 0%
Robert P. Dec 25, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Greatest book on pfsense on the internet. The author really knows what he’s talking about and makes it easy to understand. Would recommend for anyone to read interested in this topic
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.