if [ ! -n "$1" ] ;then
  echo "Empty port input"
  exit 0
fi
iptables -D INPUT -m state --state NEW -m udp -p udp --dport $1 -j ACCEPT
