blob: 6104b2ac72ee3ad7a538f36246e9b83523de37ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
<?xml version="1.0"?>
<interfaceDefinition>
<node name="reset">
<children>
<node name="ip">
<children>
<node name="bgp">
<properties>
<help>Border Gateway Protocol (BGP) information</help>
</properties>
<children>
<virtualTagNode>
<properties>
<help>BGP IPv4/IPv6 neighbor to clear</help>
<completionHelp>
<script>${vyos_completion_dir}/list_bgp_neighbors.sh --ipv4</script>
</completionHelp>
</properties>
<command>${vyos_op_scripts_dir}/bgp.py reset --command="$*"</command>
<children>
#include <include/bgp/reset-bgp-neighbor-options.xml.i>
</children>
</virtualTagNode>
<node name="all">
<properties>
<help>Clear all BGP peering sessions</help>
</properties>
<command>${vyos_op_scripts_dir}/bgp.py reset --command="$*"</command>
<children>
#include <include/bgp/reset-bgp-neighbor-options.xml.i>
</children>
</node>
<tagNode name="dampening">
<properties>
<help>Clear BGP route flap dampening information for given host ornetwork address</help>
<completionHelp>
<list><x.x.x.x> <x.x.x.x/x></list>
</completionHelp>
</properties>
<standalone>
<help>Clear BGP route flap dampening information</help>
<command>${vyos_op_scripts_dir}/bgp.py reset --command="$*"</command>
</standalone>
<command>${vyos_op_scripts_dir}/bgp.py reset --command="$*"</command>
<children>
<virtualTagNode>
<properties>
<help>Clear BGP route flap dampening information for given network address</help>
<completionHelp>
<list><x.x.x.x></list>
</completionHelp>
</properties>
<command>${vyos_op_scripts_dir}/bgp.py reset --command="$*"</command>
</virtualTagNode>
</children>
</tagNode>
#include <include/bgp/reset-bgp-afi-common.xml.i>
#include <include/bgp/reset-bgp-peer-group.xml.i>
<tagNode name="vrf">
<properties>
<help>Clear BGP statistics or status for vrf</help>
<completionHelp>
<path>vrf name</path>
</completionHelp>
</properties>
<children>
<node name="all">
<properties>
<help>Clear all BGP peering sessions for vrf</help>
</properties>
<command>${vyos_op_scripts_dir}/bgp.py reset --command="$*"</command>
<children>
#include <include/bgp/reset-bgp-neighbor-options.xml.i>
</children>
</node>
<virtualTagNode>
<properties>
<help>Clear BGP neighbor IP address</help>
<completionHelp>
<list><x.x.x.x></list>
</completionHelp>
</properties>
<command>${vyos_op_scripts_dir}/bgp.py reset --command="$*"</command>
<children>
#include <include/bgp/reset-bgp-neighbor-options.xml.i>
</children>
</virtualTagNode>
</children>
</tagNode>
</children>
</node>
</children>
</node>
</children>
</node>
</interfaceDefinition>
|