]> git.puffer.fish Git - matthieu/frr.git/commitdiff
doc: Add firewalld notice in fedora
authorStephen Worley <sworley@cumulusnetworks.com>
Thu, 20 Jun 2019 15:38:43 +0000 (11:38 -0400)
committerStephen Worley <sworley@cumulusnetworks.com>
Thu, 20 Jun 2019 16:11:25 +0000 (12:11 -0400)
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 <sworley@cumulusnetworks.com>
doc/developer/building-frr-for-fedora.rst

index 0208f1146b401949597747862378d917a4b6eacf..0bfd43e93cbdb8c73cb1a6aab38e813eb8750633 100644 (file)
@@ -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
 ^^^^^^^^^^^^^^^^^^^^^