From: Stephen Worley Date: Thu, 20 Jun 2019 15:38:43 +0000 (-0400) Subject: doc: Add firewalld notice in fedora X-Git-Tag: base_7.2~206^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=fda5621069c8d0fc0d2cb6b43cdad5779be4b41b;p=matthieu%2Ffrr.git 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 --- 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 ^^^^^^^^^^^^^^^^^^^^^