Defined Type: snmpd::interface
- Defined in:
- manifests/interface.pp
Overview
Define: snmpd::interface
Provide interface type and speed settings.
See snmpd.conf(5) ‘Interfaces Group’ for additional information.
Parameters
- name
-
Maps to NAME in the man page.
- type
- speed
-
Authors
-
Trevor Vaughan <tvaughan@onyxpoint.com>
-
19 20 21 22 23 24 25 26 27 28 |
# File 'manifests/interface.pp', line 19
define snmpd::interface (
$type,
$speed
) {
include 'snmpd'
concat_fragment { "snmpd+${name}.iface":
content => "interface ${name} ${type} ${speed}\n",
}
}
|