summaryrefslogtreecommitdiff
path: root/src/validators/ipv6-multicast
blob: 5aa7d734ab7030796c77a19d9fde1aac0b56d9d8 (plain)
1
2
3
4
5
6
7
8
9
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