diff --git a/include/tests_networking b/include/tests_networking index b4b640af..176e02e8 100644 --- a/include/tests_networking +++ b/include/tests_networking @@ -492,22 +492,6 @@ fi # ################################################################################# -# - # Test : NETW-3032 - # Description : Checking for ARP-Spoofing monitoring software - Register --test-no NETW-3032 --os Linux --weight L --network NO --description "Checking for ARP-Spoofing monitoring software" - if [ ${SKIPTEST} -eq 0 ]; then - IsRunning arpwatch - if [ ${RUNNING} -eq 1 ]; then - ARPWATCH_RUNNING=1 - Display --indent 2 --text "Checking for ARP-Spoofing monitoring software" --result RUNNING --color GREEN - else - Display --indent 2 --text "Checking for ARP-Spoofing monitoring software" --result "NOT FOUND" --color RED - ReportSuggestion ${TEST_NO} "Install ARP-Spoofing attack monitoring software like 'arpwatch'" - fi - fi -# -################################################################################# # # Test : NETW-3030 # Description : Checking for DHCP client @@ -523,6 +507,22 @@ fi # ################################################################################# +# + # Test : NETW-3032 + # Description : Checking for ARP spoofing and related monitoring software + Register --test-no NETW-3032 --os Linux --weight L --network NO --description "Checking for ARP monitoring software" + if [ ${SKIPTEST} -eq 0 ]; then + IsRunning arpwatch + if [ ${RUNNING} -eq 1 ]; then + ARPWATCH_RUNNING=1 + Display --indent 2 --text "Checking for ARP monitoring software" --result RUNNING --color GREEN + else + Display --indent 2 --text "Checking for ARP monitoring software" --result "NOT FOUND" --color YELLOW + ReportSuggestion ${TEST_NO} "Install ARP monitoring software like arpwatch" + fi + fi +# +################################################################################# # report "dhcp_client_running=${DHCP_CLIENT_RUNNING}"