From 7f21572ac257a97635d648ccb2cd8243e7bf7a8a Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Mon, 7 Sep 2015 11:38:08 +0200 Subject: [PATCH] Allow multiple connections between two hosts. --- pandora_server/util/recon_scripts/snmp-recon.pl | 3 --- 1 file changed, 3 deletions(-) diff --git a/pandora_server/util/recon_scripts/snmp-recon.pl b/pandora_server/util/recon_scripts/snmp-recon.pl index 1edcf70494..64a2e29db9 100755 --- a/pandora_server/util/recon_scripts/snmp-recon.pl +++ b/pandora_server/util/recon_scripts/snmp-recon.pl @@ -632,7 +632,6 @@ sub switch_to_switch_connectivity($$) { # Mark switch to switch connections. $SWITCH_TO_SWITCH{"$switch_1$if_name_1"} = 1; $SWITCH_TO_SWITCH{"$switch_2$if_name_2"} = 1; - return; } } } @@ -680,7 +679,6 @@ sub router_to_switch_connectivity($$) { # Mark connections in case the routers are switches too. $SWITCH_TO_SWITCH{"$switch$switch_if_name"} = 1; $SWITCH_TO_SWITCH{"$router$router_if_name"} = 1; - return; } } } @@ -711,7 +709,6 @@ sub router_to_router_connectivity($$) { # Mark connections in case the routers are switches too. $SWITCH_TO_SWITCH{"$router_1$if_1"} = 1; $SWITCH_TO_SWITCH{"$router_2$if_2"} = 1; - return; } } }