diff options
author | Christian Breunig <christian@breunig.cc> | 2023-04-01 10:52:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-01 10:52:44 +0200 |
commit | dcd2edc6ddeeba156125aa5663898029b20d553a (patch) | |
tree | 4adda4cd9b97c024bb71f32ae2930aa35e59056c /op-mode-definitions | |
parent | 0a49c0af4dbdcad9e494d4fba2212f156485fd7d (diff) | |
parent | a78982625a8a18069bd5a13744734873698fd0f9 (diff) | |
download | vyos-1x-dcd2edc6ddeeba156125aa5663898029b20d553a.tar.gz vyos-1x-dcd2edc6ddeeba156125aa5663898029b20d553a.zip |
Merge pull request #1926 from aapostoliuk/T5093-sagitta
ipsec: T5093: Fixed 'reset vpn ipsec profile' command
Diffstat (limited to 'op-mode-definitions')
-rw-r--r-- | op-mode-definitions/vpn-ipsec.xml.in | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/op-mode-definitions/vpn-ipsec.xml.in b/op-mode-definitions/vpn-ipsec.xml.in index 5baaec7ce..5a7e6dd63 100644 --- a/op-mode-definitions/vpn-ipsec.xml.in +++ b/op-mode-definitions/vpn-ipsec.xml.in @@ -14,7 +14,7 @@ <children> <tagNode name="profile"> <properties> - <help>Reset all tunnels for given DMVPN profile</help> + <help>Reset a specific tunnel for given DMVPN profile</help> <completionHelp> <path>vpn ipsec profile</path> </completionHelp> @@ -23,11 +23,24 @@ <tagNode name="tunnel"> <properties> <help>Reset a specific tunnel for given DMVPN profile</help> + <completionHelp> + <script>sudo ${vyos_completion_dir}/list_ipsec_profile_tunnels.py --profile ${COMP_WORDS[4]}</script> + </completionHelp> </properties> - <command>sudo ${vyos_op_scripts_dir}/vpn_ipsec.py --action="reset-profile" --name="$6" --tunnel="$8"</command> + <children> + <tagNode name="remote-host"> + <properties> + <help>Reset a specific tunnel for given DMVPN NBMA</help> + <completionHelp> + <list><x.x.x.x> <h:h:h:h:h:h:h:h></list> + </completionHelp> + </properties> + <command>sudo ${vyos_op_scripts_dir}/ipsec.py reset_profile_dst --profile="$5" --tunnel="$7" --nbma_dst="$9"</command> + </tagNode> + </children> + <command>sudo ${vyos_op_scripts_dir}/ipsec.py reset_profile_all --profile="$5" --tunnel="$7"</command> </tagNode> </children> - <command>sudo ${vyos_op_scripts_dir}/vpn_ipsec.py --action="reset-profile" --name="$6" --tunnel="all"</command> </tagNode> <node name="remote-access"> <properties> |