2020-10-10 17:58:27 +02:00
[](https://github.com/fwbuilder/fwbuilder/actions?query=workflow%3ALinux)
[](https://github.com/fwbuilder/fwbuilder/actions?query=workflow%3AmacOS)
[](https://github.com/fwbuilder/fwbuilder/actions?query=workflow%3Aw32-mxe)
2016-05-23 19:06:53 +02:00
2014-08-06 08:22:59 +10:00
fwbuilder
=========
Firewall Builder is a GUI firewall management application for iptables, PF, Cisco ASA/PIX/FWSM, Cisco router ACL and more. Firewall configuration data is stored in a central file that can scale to hundreds of firewalls managed from a single UI.
2018-01-23 22:35:19 -06:00
Installation instructions
=========================
Ubuntu
---------
2018-01-23 22:38:35 -06:00
```
2019-02-20 00:25:45 -03:00
sudo apt install git cmake libxml2-dev libxslt-dev libsnmp-dev qt5-default qttools5-dev-tools
2018-01-23 22:35:19 -06:00
git clone https://github.com/fwbuilder/fwbuilder.git
2019-02-20 00:25:45 -03:00
mkdir build
cd build
cmake ../fwbuilder
2018-01-23 22:35:19 -06:00
make
sudo make install
2018-01-23 22:38:35 -06:00
```
2019-02-20 00:25:45 -03:00
Note: default destination is /usr/local. This is configurable:
2018-01-23 22:38:35 -06:00
```
2019-02-20 00:25:45 -03:00
cmake ../fwbuilder -DCMAKE_INSTALL_PREFIX=/usr
2018-01-23 22:38:35 -06:00
```
2019-02-21 00:38:58 -03:00
Create deb package
---------
```
debuild -us -uc --lintian-opts --profile debian
```