From fda5621069c8d0fc0d2cb6b43cdad5779be4b41b Mon Sep 17 00:00:00 2001 From: Stephen Worley Date: Thu, 20 Jun 2019 11:38:43 -0400 Subject: [PATCH] doc: Add firewalld notice in fedora Add a note in the fedora build guide on how to disable firewalld and clear iptables that come by default. Signed-off-by: Stephen Worley --- doc/developer/building-frr-for-fedora.rst | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/doc/developer/building-frr-for-fedora.rst b/doc/developer/building-frr-for-fedora.rst index 0208f1146b..0bfd43e93c 100644 --- a/doc/developer/building-frr-for-fedora.rst +++ b/doc/developer/building-frr-for-fedora.rst @@ -98,6 +98,18 @@ And load the kernel modules on the running system: sudo modprobe mpls-router mpls-iptunnel + +.. note:: + Fedora ships with the ``firewalld`` service enabled. You may run into some + issues with the iptables rules it installs by default. If you wish to just + stop the service and clear `ALL` rules do these commands: + + .. code-block:: console + + sudo systemctl disable firewalld.service + sudo systemctl stop firewalld.service + sudo iptables -F + Install service files ^^^^^^^^^^^^^^^^^^^^^ -- 2.39.5