summaryrefslogtreecommitdiff
path: root/op-mode-definitions/execute-shell.xml.in
diff options
context:
space:
mode:
authorNataliia Solomko <natalirs1985@gmail.com>2024-09-10 16:00:13 +0300
committerNataliia Solomko <natalirs1985@gmail.com>2024-09-10 16:09:03 +0300
commit65622a733df80ecee2192f3cd5758a27e4324b3b (patch)
tree3961b4ae6f1aa60b05d43073d499df515a9c8ee0 /op-mode-definitions/execute-shell.xml.in
parentd739a10ce278c5a2cbc2c7790ed36d0e54c2624e (diff)
downloadvyos-1x-65622a733df80ecee2192f3cd5758a27e4324b3b.tar.gz
vyos-1x-65622a733df80ecee2192f3cd5758a27e4324b3b.zip
op-mode: T6694: Move some op-mode commands in the "execute" family
'force netns' — move to 'execute shell netns'. 'force vrf'— move to 'execute shell vrf'. 'force owping' — move to 'execute owping'. 'force twping' — move to 'execute twping'. 'monitor bandwidth-test' — move to 'execute bandwidth-test`. 'telnet' — move to 'execute telnet'
Diffstat (limited to 'op-mode-definitions/execute-shell.xml.in')
-rw-r--r--op-mode-definitions/execute-shell.xml.in32
1 files changed, 32 insertions, 0 deletions
diff --git a/op-mode-definitions/execute-shell.xml.in b/op-mode-definitions/execute-shell.xml.in
new file mode 100644
index 000000000..dfdc1e371
--- /dev/null
+++ b/op-mode-definitions/execute-shell.xml.in
@@ -0,0 +1,32 @@
+<?xml version="1.0"?>
+<interfaceDefinition>
+ <node name="execute">
+ <children>
+ <node name="shell">
+ <properties>
+ <help>Execute shell</help>
+ </properties>
+ <children>
+ <tagNode name="netns">
+ <properties>
+ <help>Execute shell in given Network Namespace</help>
+ <completionHelp>
+ <path>netns name</path>
+ </completionHelp>
+ </properties>
+ <command>sudo ip netns exec $4 su - $(whoami)</command>
+ </tagNode>
+ <tagNode name="vrf">
+ <properties>
+ <help>Execute shell in given VRF instance</help>
+ <completionHelp>
+ <path>vrf name</path>
+ </completionHelp>
+ </properties>
+ <command>sudo ip vrf exec $4 su - $(whoami)</command>
+ </tagNode>
+ </children>
+ </node>
+ </children>
+ </node>
+</interfaceDefinition>