diff options
-rw-r--r-- | scripts/snmp/vyatta-snmp.pl | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/scripts/snmp/vyatta-snmp.pl b/scripts/snmp/vyatta-snmp.pl index 511e1054..7e1f8e63 100644 --- a/scripts/snmp/vyatta-snmp.pl +++ b/scripts/snmp/vyatta-snmp.pl @@ -40,8 +40,14 @@ my $snmp_conf = '/etc/snmp/snmpd.conf'; sub snmp_init { - system("iptables -A INPUT -m rlsnmpstats"); - system("iptables -A OUTPUT -m rlsnmpstats"); + # + # This requires the iptables user module libipt_rlsnmpstats.so. + # to get the stats from "show snmp". For now we are disabling + # this feature. + # + + # system("iptables -A INPUT -m rlsnmpstats"); + # system("iptables -A OUTPUT -m rlsnmpstats"); } sub snmp_restart { |