I double checked inbound connects to port 843 from the remote work station at work. My firewall shows the active connection (with telnet) and so does netstat. It must be something with sc_trans?
How do I locally test that port? Simple HTTP request or something else?
[EDIT /]
I just turned off my firewall, try again.
[EDIT2 /]
I just found a way, lol. Tested it from linux box on the network:
PHP Code:
root@homeserver:~# python -c 'print "<policy-file-request/>%c" % 0' | nc 192.168.2.187 843
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<site-control permitted-cross-domain-policies="master-only"/>
<!-- Set shoutcast ports -->
<allow-access-from domain="*" to-ports="843,80,64846,64848,64850,64852"/>
</cross-domain-policy>root@homeserver:~#
...and from my work linux server on a completely different IP/network. Same result.