The firewall and/or SELinux could be what are impeding you.  I'd try
disabling SELinux and then check the firewall.  I'm not sure if the SC
rpm opens the appropriate firewall ports for you or not.  I always
manually open the appropriate ports when I setup a Fedora box for
SqueezeCenter.  I don't usually use the GUI, so this is the non-gui
approach:

Open a terminal window and enter the following commands at the prompt:

su (you'll be prompted for root's password)
cd /etc/sysconfig
cp iptables iptables.bak
gedit iptables

now, if you don't already seem them, paste these lines somewhere into
the middle of the iptables file:


Code:
--------------------
    
  -A INPUT -m state --state NEW -m tcp -p tcp --dport 3483 -j ACCEPT
  -A INPUT -m state --state NEW -m udp -p udp --dport 3483 -j ACCEPT
  -A INPUT -m state --state NEW -m tcp -p tcp --dport 9000 -j ACCEPT
  -A INPUT -m state --state NEW -m tcp -p tcp --dport 9090 -j ACCEPT
  
--------------------


Save the file, exit gedit and restart the firewall from the terminal
prompt:

service iptables restart

Now, check to see that SqueezeCenter is actually running:

/sbin/service squeezecenter status

If it is, see if your browser can now connect to squeezecenter at
http://127.0.0.1:9000/


-- 
gharris999
------------------------------------------------------------------------
gharris999's Profile: http://forums.slimdevices.com/member.php?userid=115
View this thread: http://forums.slimdevices.com/showthread.php?t=60137

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

Reply via email to