Page 1 of 1

multicasting @ windows

Posted: 26 Dec 2003 20:12
by raskk
hello,
im trying to stream a svcd on my lan on a server so that other people can access it. i think this is beeing done by using in channel config the type "multicast". problem is, that i always have to define a dsthost, means to which i want to stream. cause i want to let it act as a server this should be pretty unnecessary.
if anyone has a solution please help me.
my config looks like the following for now:

begin "multicast"
type = "multicast"
ttl = "0"
dsthost = "127.0.0.1"
dstport = "1234"
end

the server is starting and it says program started, but noone seems to be able to connect via udp://@ip :(
ty,
raskk

Posted: 26 Dec 2003 21:46
by zorglub
Hello,

1) Your DstHost must be the multicast ip address (between 224.0.0.0 and 239.255.255.255, for private use, begin with 239.255.)

2) I don't know what the result is, but zero as TTL is not really a good thing.

You should have someting like this:

Code: Select all

BEGIN "multicast" Type = "multicast" TTL = "12" DstHost = "239.255.1.1" DstPort = "1234" END
Then, the clients must start with udp://@239.255.1.1

Posted: 28 Dec 2003 01:48
by raskk
ty zorg, ill give it a try later, maybe it will do

Posted: 28 Dec 2003 02:17
by raskk
wow, it rooockz !
ty it works !