-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
36 lines (24 loc) · 1.32 KB
/
README
File metadata and controls
36 lines (24 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
===============================================================================
DESCRIPTION
A small bash script to check the number of rules in the iptables and/or
ip6tables ruleset. It will first check to see if firewalld is running and
return success if it is. This way the same script can monitor hosts running
firewalld as well as hosts with traditional iptables/ip6tables rulesets.
Useful in conjuction with Nagios and NRPE to ensure firewalls have ruleset
loaded.
Also checks the policy of the INPUT and FORWARD chains to ensure the default
policy is not ACCEPT (default ACCEPT is silly).
===============================================================================
REQUIREMENTS
Requires support in iptables for the -S flag. This appeared somewhere between
version 1.3.5 and 1.4.7
The Makefile also currently expects to find both 'iptables' and 'ip6tables'
binaries in your PATH, even if you don't intend to use both with this script.
You should either:
1) Install both iptables and ip6tables
2) Manually edit the Makefile to remove the one your don't want from the
DEP_BINS variable around line 5.
===============================================================================
COPYRIGHT and LICENSE
checkfw is Copyright (C) 2012,2018 Phillip Smith <fukawi2 (at) gmail (dot) com>
See LICENSE file for details.