diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-05-13 17:20:48 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-05-14 21:39:46 +0200 |
commit | a93ea04589918d9f984c11892b1a712cab811a3c (patch) | |
tree | 1962a7ab009796999be881064ee706da2b1b67fc /op-mode-definitions | |
parent | 4d11715bd936d5d111bb3cd6e289ef2b3c3c218a (diff) | |
download | vyos-1x-a93ea04589918d9f984c11892b1a712cab811a3c.tar.gz vyos-1x-a93ea04589918d9f984c11892b1a712cab811a3c.zip |
op-mode: conntrack: T3535: add XML command definitions
Diffstat (limited to 'op-mode-definitions')
-rw-r--r-- | op-mode-definitions/conntrack-sync.xml.in | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/op-mode-definitions/conntrack-sync.xml.in b/op-mode-definitions/conntrack-sync.xml.in new file mode 100644 index 000000000..cd0ec5cc8 --- /dev/null +++ b/op-mode-definitions/conntrack-sync.xml.in @@ -0,0 +1,36 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="reset"> + <children> + <node name="conntrack-sync"> + <properties> + <help>Reset connection syncing parameters</help> + </properties> + <children> + <leafNode name="external-cache"> + <properties> + <help>Reset external cache and request resync with other systems</help> + </properties> + <command>${vyos_op_scripts_dir}/conntrack_sync.py --reset-cache-external</command> + </leafNode> + <leafNode name="internal-cache"> + <properties> + <help>Reset internal cache and request resync with other systems</help> + </properties> + <command>${vyos_op_scripts_dir}/conntrack_sync.py --reset-cache-internal</command> + </leafNode> + </children> + </node> + </children> + </node> + <node name="restart"> + <children> + <leafNode name="conntrack-sync"> + <properties> + <help>Restart connection tracking synchronization service</help> + </properties> + <command>${vyos_op_scripts_dir}/conntrack_sync.py --restart</command> + </leafNode> + </children> + </node> +</interfaceDefinition> |