How to Reinstall pfSense on a Netgate 6100 Firewall

Looking for a simple walkthrough on reinstalling pfSense on a Netgate 6100 using the Netgate Installer? You’re in the right place.

In the video below, we walk through the reinstall process in a clean, straightforward way so you can see exactly what to expect before doing it yourself.

Before You Start

Before reinstalling pfSense, make sure you have a backup of your current configuration. If this firewall is being used in production, schedule a maintenance window before making changes.

References

Watch the Full Walkthrough

Follow along with the full video tutorial below:

Need Help With pfSense or Business Firewall Support?

Reasonable IT Service provides firewall, networking, server, and cybersecurity support for small businesses. If you need help with pfSense, Netgate firewalls, VLANs, or business network troubleshooting, contact us today.

Buy Us A Coffee

As we delve more into content creation for our youtube channel, we’ve decided to open a donation option for those who may not necessarily be a client but would still like to show some love ❤️

So if one of our videos or blogs has really helped you out and you’d like to show support, welp, now you have an option to Buy Me A Coffee ☕️😁

Of course all donations, big or small, are greatly appreciated and help us to keep pumping out great content for you.

Cheers.

Install Zabbix 6.4 On Ubuntu Server 22.04.1 In Under 10 Minutes

This guide will assume you have a working Ubuntu Server already installed with SSH enabled and ready to go. If you need help with installing Ubuntu server, refer here

If you’re more visual and prefer to watch an installation walk through, refer here

Aside from that, lets jump straight into installing Zabbix 6.4 PRE-RELEASE on top of Ubuntu Server 22.04.1 which as  the time of this writing, is latest and greatest versions of both ->

1. Install ubuntu server 22.04.1 and enable ssh

2. SSH to your Ubuntu server to run install commands

3. Install and configure Zabbix for your platform

Run the following cmds:

sudo wget https://repo.zabbix.com/zabbix/6.3/ubuntu/pool/main/z/zabbix-release/zabbix-release_6.3-3%2Bubuntu22.04_all.deb
sudo dpkg -i zabbix-release_6.3-3+ubuntu22.04_all.deb
sudo apt update 
sudo apt install zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-sql-scripts zabbix-agent

4. Install sql server

sudo apt-get install mysql-server
sudo systemctl start mysql

5. Create initial database

sudo mysql
create database zabbix character set utf8mb4 collate utf8mb4_bin;
create user zabbix@localhost identified by 'password';
grant all privileges on zabbix.* to zabbix@localhost;
set global log_bin_trust_function_creators = 1;
quit;

6. On Zabbix server host import initial schema and data. You will be prompted to enter your newly created password.

sudo zcat /usr/share/zabbix-sql-scripts/mysql/server.sql.gz | mysql --default-character-set=utf8mb4 -uzabbix -p zabbix

7. Disable log_bin_trust_function_creators option after importing database schema.

sudo mysql
set global log_bin_trust_function_creators = 0;
quit;

8. Configure the database for Zabbix server

Edit file /etc/zabbix/zabbix_server.conf and set the DB password with ->

sudo vim /etc/zabbix/zabbix_server.conf

9. Start Zabbix server and agent processes

systemctl restart zabbix-server zabbix-agent apache2
systemctl enable zabbix-server zabbix-agent apache2

10. Open Zabbix UI web page and proceed with web ui config (should be self explanatory)

The default URL for Zabbix UI when using Apache web server is http://host/zabbix

Video walk through ->

Questions, comments, concerns? Feel free to contact us @ support@reasonableitservice.com Always glad to help.