summaryrefslogtreecommitdiff
path: root/src/validators/ipv4-multicast
blob: 3f28c51dbb976399b4374a53f7e2c5726b326a5d (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

ipaddrcheck --is-ipv4-multicast $1 && ipaddrcheck --is-ipv4-single $1

if [ $? -gt 0 ]; then
    echo "Error: $1 is not a valid IPv4 multicast address"
    exit 1
fi

exit 0