diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-01-15 21:35:06 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-01-15 21:35:06 +0100 |
commit | 79a02470c4f9f2184913a959545b54a2dfd76d1e (patch) | |
tree | d550ee897d33412abbf1c2be8ab07dfb5505384e /op-mode-definitions/restart-snmp.xml.in | |
parent | 94f886ab0f98207fee57c11e78b94240b1ffff8e (diff) | |
download | vyos-1x-79a02470c4f9f2184913a959545b54a2dfd76d1e.tar.gz vyos-1x-79a02470c4f9f2184913a959545b54a2dfd76d1e.zip |
snmp: T652: enable interface_replace_old option and restart command
- Remove all old ifTable entries with the same ifName as newly appeared
interface (with different ifIndex) - this is the case on e.g. ppp interfaces
- Add new op-mode command "restart snmp" to restart the daemon
Diffstat (limited to 'op-mode-definitions/restart-snmp.xml.in')
-rw-r--r-- | op-mode-definitions/restart-snmp.xml.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/op-mode-definitions/restart-snmp.xml.in b/op-mode-definitions/restart-snmp.xml.in new file mode 100644 index 000000000..7de27df64 --- /dev/null +++ b/op-mode-definitions/restart-snmp.xml.in @@ -0,0 +1,13 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="restart"> + <children> + <node name="snmp"> + <properties> + <help>Restart SNMP service</help> + </properties> + <command>if cli-shell-api existsActive service snmp; then sudo systemctl restart snmpd.service; else echo "Service SNMP not configured"; fi</command> + </node> + </children> + </node> +</interfaceDefinition> |