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 | |
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')
-rwxr-xr-x | src/validators/ipv6-exclude | 7 | ||||
-rwxr-xr-x | src/validators/ipv6-range | 16 | ||||
-rwxr-xr-x | src/validators/ipv6-range-exclude | 7 |
3 files changed, 30 insertions, 0 deletions
diff --git a/src/validators/ipv6-exclude b/src/validators/ipv6-exclude new file mode 100755 index 000000000..893eeab09 --- /dev/null +++ b/src/validators/ipv6-exclude @@ -0,0 +1,7 @@ +#!/bin/sh +arg="$1" +if [ "${arg:0:1}" != "!" ]; then + exit 1 +fi +path=$(dirname "$0") +${path}/ipv6 "${arg:1}" 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) diff --git a/src/validators/ipv6-range-exclude b/src/validators/ipv6-range-exclude new file mode 100755 index 000000000..912b55ae3 --- /dev/null +++ b/src/validators/ipv6-range-exclude @@ -0,0 +1,7 @@ +#!/bin/sh +arg="$1" +if [ "${arg:0:1}" != "!" ]; then + exit 1 +fi +path=$(dirname "$0") +${path}/ipv6-range "${arg:1}" |