order => "201",
}
- shorewall::rule { "hp-pdl-datastr-tcp":
+ shorewall::rule { "hplip-tcp":
action => 'ACCEPT',
source => 'net',
destination => '$FW',
order => "200",
}
- shorewall::rule { "hp-pdl-datastr-udp":
+ shorewall::rule { "hplip-udp":
action => 'ACCEPT',
source => 'net',
destination => '$FW',
ratelimit => '-',
order => "201",
}
+
+ shorewall::rule { "snmp-tcp":
+ action => 'ACCEPT',
+ source => 'net',
+ destination => '$FW',
+ proto => 'tcp',
+ destinationport => "161",
+ ratelimit => '-',
+ order => "200",
+ }
+
+ shorewall::rule { "snmp-udp":
+ action => 'ACCEPT',
+ source => 'net',
+ destination => '$FW',
+ proto => 'udp',
+ destinationport => "161",
+ ratelimit => '-',
+ order => "201",
+ }
}