Quote:
Originally Posted by cat6man
i see the name of the sage server both times, but with the linux server the hd200 does not seem to have an ip address.
could there be a firewall port that needs to be opened?
on the other hand, the clients do find the linux server and connect.
|
Can you verify what ports you have open or not open? Did you specifically enable iptables or another firewall tool (ex. ufw), or are you assuming something turned on automatically? At the core is iptables.
The above command will either spit out lots of fun gibberish like text with the firewall configuration if your firewall is configured, or on a machine with a disabled firewall, you would get...
Quote:
$ sudo iptables -S
-P INPUT ACCEPT
-P FORWARD ACCEPT
-P OUTPUT ACCEPT
|
I believe you will get the above, even if your firewall is configured but disabled. (in my test machine I did, but I'm not certain if this is always true)
If your firewall is on, you need to open ports... you can run the following
Quote:
sudo ufw allow proto tcp to any port 22 2>/dev/null
sudo ufw allow proto tcp to any port 7760 2>/dev/null
sudo ufw allow proto tcp to any port 7818 2>/dev/null
sudo ufw allow proto tcp to any port 8018 2>/dev/null
sudo ufw allow proto tcp to any port 8080 2>/dev/null
sudo ufw allow proto udp to any port 8271 2>/dev/null
sudo ufw allow proto tcp to any port 31099 2>/dev/null
sudo ufw allow proto udp to any port 31100 2>/dev/null
sudo ufw allow proto tcp to any port 42024 2>/dev/null
sudo iptables -I INPUT -p udp -m udp --sport 65001 -j ACCEPT
|
There is an issue in the auto script where the install does not appear to return, so the end of the script does not always seem to run.
__________________
Server: Centos Server 14.04 LTS - 64Bit, VM in XenServer, 2 cores of a Intel i7, 2-4 GB Ram, 8 GB system Disk, 1.8 TB storage, SageTV V9.0.4.232, HDHR Prime x 1
Clients: PC Client x 1, HD-300 x 1, AppleTV x 2, WebClient (phone/tablet) x 3
|