PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : BattleCom-Port


Fatty
11.11.01, 15:36
Ich habe folgendes Problem: Ich benutze den Diskettenrouter FLI4L 2.0.1 (http://www.fli4l.de). Jetzt will ich in Windows das Sprachkommunikationstool BattleCom verwenden. Leider ist es mir nicht möglich auf einen Server zu connecten. Ich vermute deshalb, dass der dazu nötige Port nicht geforwarded oder sogar abgeblockt wird.
Daher wollte ich wissen, ob jemand den Port dieses Tools kennt, damit ich darauf einen Forward legen kann.

geronet
11.11.01, 15:55
#!/bin/sh


# See how we were called.
case "$1" in
rougespear)
echo "inserting autofw ports 2346 and 2348 for $2 ..."
/usr/sbin/ipmasqadm autofw -A -r udp 2346 2348 -h $2
/usr/sbin/ipmasqadm autofw -A -r tcp 2346 2348 -h $2

;;
battlecom)
echo "inserting autofw ports 47624,47625 and 2300-2400 for $2 ..."
/usr/sbin/ipmasqadm autofw -A -r tcp 47624 47625 -h $2
/usr/sbin/ipmasqadm autofw -A -r tcp 2300 2400 -h $2
/usr/sbin/ipmasqadm autofw -A -r udp 2300 2400 -h $2

;;
wwp)
echo "inserting autofw ports 47624,47625 and 2300-2400 for $2 ..."
/usr/sbin/ipmasqadm autofw -A -r tcp 6676 6677 -h $2
/usr/sbin/ipmasqadm autofw -A -r udp 17010 17012 -h $2

;;
stop)
ipmasqadm autofw -F

;;
status)
cat /proc/net/ip_masq/autofw

;;
*)
echo "Usage: redirect {[service]|stop|status} 'host'"
echo "redirects ports for 'service' to 'host'"

exit 1
esac


---------------------
alles klar?
aber nur ip-adressen angeben!