summaryrefslogtreecommitdiff
path: root/src/validators/bgp-rd-rt
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-12-04 14:15:37 +0100
committerChristian Poessinger <christian@poessinger.com>2021-12-04 14:18:11 +0100
commit84b29c7c71af6663ef26dc40475cf4b0e5b179a6 (patch)
treea74faf11b700ef4f7444754f0f424d980bf68be0 /src/validators/bgp-rd-rt
parent4683223c8ffcb10470f7a8a2eb48d57773ac73df (diff)
downloadvyos-1x-84b29c7c71af6663ef26dc40475cf4b0e5b179a6.tar.gz
vyos-1x-84b29c7c71af6663ef26dc40475cf4b0e5b179a6.zip
validators: T4042: rename bgp-route-target -> bgp-rd-rt
Diffstat (limited to 'src/validators/bgp-rd-rt')
-rwxr-xr-xsrc/validators/bgp-rd-rt51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/validators/bgp-rd-rt b/src/validators/bgp-rd-rt
new file mode 100755
index 000000000..24b0043f9
--- /dev/null
+++ b/src/validators/bgp-rd-rt
@@ -0,0 +1,51 @@
+#!/usr/bin/env python3
+#
+# Copyright (C) 2021 VyOS maintainers and contributors
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 2 or later as
+# published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+from argparse import ArgumentParser
+from vyos.template import is_ipv4
+
+parser = ArgumentParser()
+group = parser.add_mutually_exclusive_group()
+group.add_argument('--route-target', action='store', help='Validate one BGP route-target')
+group.add_argument('--route-target-multi', action='store', help='Validate multiple, whitespace separated BGP route-targets')
+args = parser.parse_args()
+
+def is_valid_rt(rt):
+ # every route target needs to have a colon and must consists of two parts
+ value = rt.split(':')
+ if len(value) != 2:
+ return False
+ # A route target must either be only numbers, or the first part must be an
+ # IPv4 address
+ if (is_ipv4(value[0]) or value[0].isdigit()) and value[1].isdigit():
+ return True
+ return False
+
+if __name__ == '__main__':
+ if args.route_target:
+ if not is_valid_rt(args.route_target):
+ exit(1)
+
+ elif args.route_target_multi:
+ for rt in args.route_target_multi.split(' '):
+ if not is_valid_rt(rt):
+ exit(1)
+
+ else:
+ parser.print_help()
+ exit(1)
+
+ exit(0)