1
ewconfig/scripts/tcpreflect
2024-11-13 15:48:03 -05:00

11 lines
177 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 TCP traffic on port $1"
ncat --broker --listen -p "$1"