Add a script to open port with upnpc

This commit is contained in:
Mathieu Maret 2011-07-29 12:04:03 +02:00
parent 374b3d6355
commit b3319faefa
1 changed files with 19 additions and 0 deletions

19
scripts/openPortUpnp Executable file
View 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