Hello,
How to enable - and disable - the firewall ?
(GhostBSD 10.3 XFCE 64-bit).
Thanks.
[Solved] Firewall
-
- Posts: 50
- Joined: Thu Oct 29, 2015 3:05 pm
[Solved] Firewall
Last edited by christophe60_fr on Thu Sep 15, 2016 6:38 am, edited 1 time in total.
Re: Firewall
GhostBSD doesn't ship with a firewall, (you can choose among several available in FreeBSD),
pf is one commonly used in FreeBSD
place in /etc/rc.conf:
and customize your filters as fit your needs, below an example from pf.conf man page, that basically allow any traffic going outside and only traffic on port 25 inward.
Hope that help, even if I'm not sure this is what you would have read. 
pf is one commonly used in FreeBSD
place in /etc/rc.conf:
Code: Select all
pf_enable="YES"
Code: Select all
ext_if = "kue0"
all_ifs = "{" $ext_if lo0 "}"
pass out on $ext_if from any to any
pass in on $ext_if proto tcp from any to any port 25

-
- Posts: 50
- Joined: Thu Oct 29, 2015 3:05 pm
Re: Firewall
Yes, that's exactly what I needed.
But in what file to put these rules ? Should I create a pf.conf ?
But in what file to put these rules ? Should I create a pf.conf ?
Re: Firewall
Yes, /etc/pf.conf, sorry, seems I forgot to mention that.christophe60_fr wrote:Yes, that's exactly what I needed.
But in what file to put these rules ? Should I create a pf.conf ?
Re: Firewall
My /etc/pf.conf file was empty so i just added those rules to the empty /etc/pf.conf file and save it. Was it right or is it another way to add the rules?ASX wrote: ↑Mon Sep 12, 2016 7:28 pm GhostBSD doesn't ship with a firewall, (you can choose among several available in FreeBSD),
pf is one commonly used in FreeBSD
place in /etc/rc.conf:and customize your filters as fit your needs, below an example from pf.conf man page, that basically allow any traffic going outside and only traffic on port 25 inward.Code: Select all
pf_enable="YES"
Hope that help, even if I'm not sure this is what you would have read.Code: Select all
ext_if = "kue0" all_ifs = "{" $ext_if lo0 "}" pass out on $ext_if from any to any pass in on $ext_if proto tcp from any to any port 25
![]()
Re: [Solved] Firewall
I don't see firewall rules loaded message on screen when booting up. I did place the firewall_enable="YES" in /etc/rc.conf. I ask because this shows up on FreeBSD. Is there a way to test and make sure the firewall is active?