diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-02-25 11:16:35 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-02-25 11:16:35 +0100 |
commit | bfe06683fd7dd50abc2ad5067a598f4ecf6b9a19 (patch) | |
tree | f87ff94f460b646647bf453c4d554fd8cc1b6a63 /op-mode-definitions/connect-disconnect.xml | |
parent | fb729b40ada105636abdfa5371a2079216c127bc (diff) | |
download | vyos-1x-bfe06683fd7dd50abc2ad5067a598f4ecf6b9a19.tar.gz vyos-1x-bfe06683fd7dd50abc2ad5067a598f4ecf6b9a19.zip |
pppoe: T2070: rewrite (dis-)connect op-mode commands in XML and Python
Diffstat (limited to 'op-mode-definitions/connect-disconnect.xml')
-rw-r--r-- | op-mode-definitions/connect-disconnect.xml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/op-mode-definitions/connect-disconnect.xml b/op-mode-definitions/connect-disconnect.xml new file mode 100644 index 000000000..77c334180 --- /dev/null +++ b/op-mode-definitions/connect-disconnect.xml @@ -0,0 +1,35 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="connect"> + <properties> + <help>Establish a connection</help> + </properties> + <children> + <tagNode name="interface"> + <properties> + <help>Bring up a connection-oriented network interface</help> + <completionHelp> + <script>${vyos_completion_dir}/list_pppoe_peers.sh</script> + </completionHelp> + </properties> + <command>sudo ${vyos_op_scripts_dir}/connect_disconnect.py --connect "$3"</command> + </tagNode> + </children> + </node> + <node name="disconnect"> + <properties> + <help>Take down a connection</help> + </properties> + <children> + <tagNode name="interface"> + <properties> + <help>Take down a connection-oriented network interface</help> + <completionHelp> + <script>${vyos_completion_dir}/list_pppoe_peers.sh</script> + </completionHelp> + </properties> + <command>sudo ${vyos_op_scripts_dir}/connect_disconnect.py --disconnect "$3"</command> + </tagNode> + </children> + </node> +</interfaceDefinition> |