1
ewconfig/scripts/udp-reflect

11 lines
180 B
Bash
Executable File

#! /bin/bash
set -e
# Require a port
if [ -z "$1" ]; then
echo "Usage: $0 <port>"
exit 1
fi
echo "Reflecting all UDP traffic on port $1"
ncat --broker --listen -p "$1" -u