summaryrefslogtreecommitdiff
path: root/src/validators/ipv6-multicast
diff options
context:
space:
mode:
authorsarthurdev <965089+sarthurdev@users.noreply.github.com>2022-01-10 23:24:50 +0100
committersarthurdev <965089+sarthurdev@users.noreply.github.com>2022-01-11 11:57:56 +0100
commitf97144259335102c3d96b232cbb0af4970120d62 (patch)
treeb42d87a39dd1c03df4c535b9d7b630558694fa0a /src/validators/ipv6-multicast
parentf16525175deb69ae3b9193573550992b4d5fd951 (diff)
downloadvyos-1x-f97144259335102c3d96b232cbb0af4970120d62.tar.gz
vyos-1x-f97144259335102c3d96b232cbb0af4970120d62.zip
validators: T4144: Add error messages to the majority of IP validators
Diffstat (limited to 'src/validators/ipv6-multicast')
-rwxr-xr-xsrc/validators/ipv6-multicast7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/validators/ipv6-multicast b/src/validators/ipv6-multicast
index 5afc437e5..5aa7d734a 100755
--- a/src/validators/ipv6-multicast
+++ b/src/validators/ipv6-multicast
@@ -1,3 +1,10 @@
#!/bin/sh
ipaddrcheck --is-ipv6-multicast $1 && ipaddrcheck --is-ipv6-single $1
+
+if [ $? -gt 0 ]; then
+ echo "Error: $1 is not a valid IPv6 multicast address"
+ exit 1
+fi
+
+exit 0 \ No newline at end of file