diff options
author | Stig Thormodsrud <stig@uffda.(none)> | 2007-10-20 20:56:26 -0700 |
---|---|---|
committer | Stig Thormodsrud <stig@uffda.(none)> | 2007-10-20 20:56:26 -0700 |
commit | 92ee6e6c49cacad059478ad1a50ffa7a50ecd90e (patch) | |
tree | 7f638266f2b8826e9e27772a0d8dcb2aa40a3d89 /templates/protocols | |
parent | 65f1eec84304afcde1935808519bd2cf51677a8a (diff) | |
download | vyatta-cfg-quagga-92ee6e6c49cacad059478ad1a50ffa7a50ecd90e.tar.gz vyatta-cfg-quagga-92ee6e6c49cacad059478ad1a50ffa7a50ecd90e.zip |
Add basic snmp support.
Diffstat (limited to 'templates/protocols')
-rw-r--r-- | templates/protocols/snmp/community/node.def | 3 | ||||
-rw-r--r-- | templates/protocols/snmp/community/node.tag/authorization/node.def | 7 | ||||
-rw-r--r-- | templates/protocols/snmp/community/node.tag/node.def | 1 | ||||
-rw-r--r-- | templates/protocols/snmp/contact/node.def | 2 | ||||
-rw-r--r-- | templates/protocols/snmp/description/node.def | 2 | ||||
-rw-r--r-- | templates/protocols/snmp/location/node.def | 3 | ||||
-rw-r--r-- | templates/protocols/snmp/node.def | 9 | ||||
-rw-r--r-- | templates/protocols/snmp/trap-target/node.def | 3 |
8 files changed, 30 insertions, 0 deletions
diff --git a/templates/protocols/snmp/community/node.def b/templates/protocols/snmp/community/node.def new file mode 100644 index 00000000..18472af8 --- /dev/null +++ b/templates/protocols/snmp/community/node.def @@ -0,0 +1,3 @@ +tag: +type: txt +help: "Community name" diff --git a/templates/protocols/snmp/community/node.tag/authorization/node.def b/templates/protocols/snmp/community/node.tag/authorization/node.def new file mode 100644 index 00000000..b9960195 --- /dev/null +++ b/templates/protocols/snmp/community/node.tag/authorization/node.def @@ -0,0 +1,7 @@ +type: txt +default: "ro" +help: "Authorization type either (rw or ro)" +syntax: $(@) in "ro", "rw"; "authorization type must be either rw or ro" + + + diff --git a/templates/protocols/snmp/community/node.tag/node.def b/templates/protocols/snmp/community/node.tag/node.def new file mode 100644 index 00000000..410186c6 --- /dev/null +++ b/templates/protocols/snmp/community/node.tag/node.def @@ -0,0 +1 @@ +help: "Community options" diff --git a/templates/protocols/snmp/contact/node.def b/templates/protocols/snmp/contact/node.def new file mode 100644 index 00000000..970ed5fa --- /dev/null +++ b/templates/protocols/snmp/contact/node.def @@ -0,0 +1,2 @@ +type: txt +help: "Contact information" diff --git a/templates/protocols/snmp/description/node.def b/templates/protocols/snmp/description/node.def new file mode 100644 index 00000000..d5566f58 --- /dev/null +++ b/templates/protocols/snmp/description/node.def @@ -0,0 +1,2 @@ +type: txt +help: "Description information" diff --git a/templates/protocols/snmp/location/node.def b/templates/protocols/snmp/location/node.def new file mode 100644 index 00000000..284e38a7 --- /dev/null +++ b/templates/protocols/snmp/location/node.def @@ -0,0 +1,3 @@ +type: txt +help: "Location information" + diff --git a/templates/protocols/snmp/node.def b/templates/protocols/snmp/node.def new file mode 100644 index 00000000..269b64ed --- /dev/null +++ b/templates/protocols/snmp/node.def @@ -0,0 +1,9 @@ +help: "Configure SNMP" +create: "/opt/vyatta/sbin/vyatta-snmp.pl --init-snmp" +delete: "touch /tmp/snmp.\\$PPID" +end: "if [ -f \"/tmp/snmp.\\$PPID\" ]; then \ + /opt/vyatta/sbin/vyatta-snmp.pl --stop-snmp \ + rm -rf /tmp/snmp.\\$PPID; \ + else \ + /opt/vyatta/sbin/vyatta-snmp.pl --update-snmp; \ + fi; " diff --git a/templates/protocols/snmp/trap-target/node.def b/templates/protocols/snmp/trap-target/node.def new file mode 100644 index 00000000..1a7d5bae --- /dev/null +++ b/templates/protocols/snmp/trap-target/node.def @@ -0,0 +1,3 @@ +multi: +type: ipv4 +help: "IPv4 address of trap target" |