Bash_Scripts/Port-Forward.bash

77 lines
1.7 KiB
Bash
Raw Normal View History

2021-07-18 02:56:20 -05:00
#!/bin/bash --posix
set -e
IP=""
INBOUND_PORT=""
FORWARD_PORT=""
usage() {
printf "%s" "Usage:
--ip
The ip address to forward data to
Example:
--ip 192.168.10.11
--inbound-port
The port that data will be received on
Example:
--inbound-port 22
--forward-port
The port that data will be forwarded to
Example:
--forward-port 2020
All above flags must be passed with arguments"
}
error() {
2021-07-18 12:57:56 -05:00
printf '%s\n' "$1" >&2
exit 1
2021-07-18 02:56:20 -05:00
}
while :; do
2021-07-18 12:57:56 -05:00
case $1 in
-h | -\? | --help)
usage # Display a usage synopsis.
exit
;;
--) # End of all options.
shift
break
;;
--ip)
shift
[[ "${1}" == "" ]] && error "--ip requires an argument"
IP=${1}
;;
--inbound-port)
2021-07-18 02:56:20 -05:00
shift
2021-07-18 12:57:56 -05:00
[[ "${1}" == "" ]] && error "--inbound-port requires an argument"
INBOUND_PORT=${1}
;;
--forward-port)
shift
[[ "${1}" == "" ]] && error "--forward-port requires an argument"
FORWARD_PORT=${1}
;;
-?*)
printf 'Unknown option: %s\n' "$1" >&2
usage
;;
*) # Default case: No more options, so break out of the loop.
break ;;
esac
shift
2021-07-18 02:56:20 -05:00
done
2021-07-18 12:57:56 -05:00
[[ "${IP}" == "" ]] && error "--ip requires an argument"
[[ "${FORWARD_PORT}" == "" ]] && error "--forward-port requires an argument"
[[ "${INBOUND_PORT}" == "" ]] && error "--inbound-port requires an argument"
2021-07-18 02:56:20 -05:00
firewall-cmd --permanent --add-forward-port=port="${INBOUND_PORT}":proto=tcp:toaddr="${IP}":toport="${FORWARD_PORT}"
firewall-cmd --permanent --add-port="${INBOUND_PORT}"/tcp
firewall-cmd --add-masquerade
2021-07-18 12:57:56 -05:00
firewall-cmd --reload
2021-07-18 02:56:20 -05:00
2021-07-18 12:57:56 -05:00
echo "Routing all data on ${INBOUND_PORT} to ${IP}:${FORWARD_PORT}"