diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2021-05-25 23:17:16 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-25 22:17:16 +0200 |
commit | 654c8cad2daaf84a07e4664d2c0469a863a46bdc (patch) | |
tree | 9d917366bd60075950494a79a6864a9811fd70b6 /src/validators/ipv6-range | |
parent | d12f945d24fd9098e69620d84699b61bd7838c99 (diff) | |
download | vyos-1x-654c8cad2daaf84a07e4664d2c0469a863a46bdc.tar.gz vyos-1x-654c8cad2daaf84a07e4664d2c0469a863a46bdc.zip |
firewall: T3568: add XML definitions for firewall
Add XML for configuration mode firewall. Used for future rewriting it to Python style.
Diffstat (limited to 'src/validators/ipv6-range')
-rwxr-xr-x | src/validators/ipv6-range | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/validators/ipv6-range b/src/validators/ipv6-range new file mode 100755 index 000000000..033b6461b --- /dev/null +++ b/src/validators/ipv6-range @@ -0,0 +1,16 @@ +#!/usr/bin/python3 + +import sys +import re +from vyos.template import is_ipv6 + +if __name__ == '__main__': + if len(sys.argv)>1: + ipv6_range = sys.argv[1] + # Regex for ipv6-ipv6 https://regexr.com/ + if re.search('([a-f0-9:]+:+)+[a-f0-9]+-([a-f0-9:]+:+)+[a-f0-9]+', ipv6_range): + for tmp in ipv6_range.split('-'): + if not is_ipv6(tmp): + sys.exit(1) + + sys.exit(0) |