PDA

View Full Version : Fill in the Blanks


dynagod
12-05-2004, 21:56
Hello all, I am trying to get my team speak monitor working on my clan nuke site/

however im a little confused


// **** settings - to be edited before first use ****
var $serverURL = "xxx.xxx.xxx.xxx<--"; // will be used for the connect link, don't use localhost here
var $serverAddress = "xxx.xxx.xxx.xxx"; // can be ip address or url
var $serverQueryPort = 51234; // default 51234, must be accessible and usable. check server.ini
var $serverUDPPort = 8760; // default 8767
// **** end of settings ****


Arent an address and a URL the same thing?
and why does it want it in IP form? Online stomping Grounds give me this address vs1.osg.cc:8886 not an ip?

now the query port? what is that?

and the UDP port is TCP/IP +1 correct?
UDP would be 8887 for me correct..
any help i could get would be greatly appreciated.online stomping grounds has ignored my email for help on this..
thanks ahead of time all

Ken H
17-05-2004, 15:16
I'm sure I don't know half as much about porting ts to nuke as others here but since noone is helping you I'll give it a shot.

Online stomping Grounds give me this address vs1.osg.cc:8886 not an ip?

The ip for that address is 69.12.31.34


now the query port? what is that?

Query port I'm going to assume is the port through which the web server will query the teamspeak server for updated information.


and the UDP port is TCP/IP +1 correct?

No. TCP and UDP are both layer 4 transport protocols. TCP offers reliable delivery, udp offers unreliable delivery. The are separate protocols so there is no + or - factors. A UDP port is a UDP port, same as a TCP Port is a TCP port, note both protocols can also share a port.(doing a google search you should be able to come up with very detailed info on these protocols)

It looks to me like you will need your web host to open another port (5123) and you will need to make sure your teamspeak server is running on port 8886.

I hope this helps you.