From 702ed1ee518e8aa398e16658d8500a9133384e15 Mon Sep 17 00:00:00 2001 From: Paul Beyer Date: Fri, 18 Jun 2021 15:57:46 +0100 Subject: [PATCH] Updated CentOS guidance for firewalld to perform app test --- docs/installation/3-netbox.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/installation/3-netbox.md b/docs/installation/3-netbox.md index 7a8e0bc80..2f215f1f9 100644 --- a/docs/installation/3-netbox.md +++ b/docs/installation/3-netbox.md @@ -249,6 +249,15 @@ Superuser created successfully. ## Test the Application +!!! note + By default RHEL based distros will likely block your testing attempts with firewalld + +=== "CentOS" + + ```no-highlight + sudo systemctl stop firewalld + ``` + At this point, we should be able to run NetBox's development server for testing. We can check by starting a development instance: ```no-highlight @@ -279,3 +288,9 @@ Try logging in using the superuser account we just created. Once authenticated, ![NetBox UI as seen by an administrator](../media/installation/netbox_ui_admin.png) Type `Ctrl+c` to stop the development server. + +=== "CentOS" + + ```no-highlight + sudo systemctl start firewalld + ```