#!/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