Need help with Edge/Origin server configurations
I've been trying now for few days to configure an Edge server that would connect to our working Origin server.
I have not changed anything on the Origin server and media are served properly
I can easily play all media from the videoPlayer.html sample app distributed with the server.
http://10.0.9.19:8134/samples/videoPlayer/videoplayer.html
using the media;
rtmp://10.0.9.19/vod/stories/Test/test
Now I have installed a fresh version of FMS on a second machine and configured the Edge server as follow;
<Proxy>
<Mode>remote</Mode>
<RequestTimeout>5</RequestTimeout>
<Anonymous>false</Anonymous>
<CacheDir enabled="true" useAppName="true">
<Path>c:\fmscache\</Path>
<MaxSize>32</MaxSize>
</CacheDir>
<LocalAddress></LocalAddress>
<RouteTable protocol="">
<RouteEntry>*:*;10.0.9.19:*</RouteEntry>
</RouteTable>
<EdgeAutoDiscovery>
<Enabled>false</Enabled>
<AllowOverride>true</AllowOverride>
<WaitTime>5000</WaitTime>
</EdgeAutoDiscovery>
<AggregateMessages enabled="true">
</AggregateMessages>
</Proxy>
Now if I try to connect to rtmp://10.0.9.20/vod/stories/Test/test i simply get an error saying that it cannot connect to the network...
I also tried rtmp://10.0.9.20/?rtmp://10.0.9.19/vod/stories/Test/test
What I am doing wrong?
