#!/bin/sh

ipaddrcheck --is-ipv4 $1

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

exit 0