Could be a number of things
    
- What does your slimserver.conf say for "allowedHosts". Something
  like "127.0.0.1,192.168.1.*" would be appropriate
- Do you have firewalling enabled on your system? Try disabling it to
  test whether that is preventing the connection. This should work (as
  root), though I don't know if Ubuntu does things this way:   
Code:
--------------------
        iptables -F
--------------------
    
  

If the firewall is at fault, this will open the HTTP port 
Code:
--------------------
    iptables -A INPUT -p tcp --dport 9000 -j ACCEPT
--------------------


You could also post the output of 
Code:
--------------------
    iptables -L
--------------------


Hopefully this helps.


-- 
syburgh
------------------------------------------------------------------------
syburgh's Profile: http://forums.slimdevices.com/member.php?userid=14239
View this thread: http://forums.slimdevices.com/showthread.php?t=42778

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/unix

Reply via email to