Add a script to open port with upnpc
This commit is contained in:
parent
374b3d6355
commit
b3319faefa
19
scripts/openPortUpnp
Executable file
19
scripts/openPortUpnp
Executable file
@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
|
||||
# This script is using upnpc version 1.6
|
||||
# http://miniupnp.free.fr/files/
|
||||
|
||||
serverIp=192.168.1.10
|
||||
proto="TCP"
|
||||
|
||||
|
||||
if [[ $# == 0 || $1 == "-h" || $1 == "--help" ]] ; then
|
||||
echo "usage $0 portNumber [TCP/UDP] [serverIP]"
|
||||
echo "default serverIp: $serverIp, protocol: $proto"
|
||||
exit
|
||||
fi
|
||||
port=${1}
|
||||
proto=${2:-$proto}
|
||||
serverIp=${3:-$serverIp}
|
||||
|
||||
upnpc -a $serverIp $port $port $proto
|
Loading…
Reference in New Issue
Block a user