Re: Guide: Sharing Ceton InfiniTV Tuners with Client HTPC System

Home Forums Re: Guide: Sharing Ceton InfiniTV Tuners with Client HTPC System

#2246
mikinho
Participant

    btw. InfiniTV4 install guide outlines what firewall ports are needed–no guessing required.

    [quote]
    NameUDP/TCPPort RangeIn/Out
    RTPUDP5001-5016IN
    SSDPUDP1900IN/OUT
    RTSPTCP554OUT
    UPnPTCP2869IN/OUT
    WMDRMUDP5757-5772OUT

    [/quote]

    Below is a cmd line I wrote to set them if my tools fails

    [code]netsh advfirewall firewall add rule name="TV Tuner Device (UPnP-In)" dir=In Profile=Private LocalIP=Any RemoteIP=Any Protocol=TCP LocalPort=2869 RemotePort=Any Edge=No action=Allow
    netsh advfirewall firewall add rule name="TV Tuner Device (SSDP-In)" dir=In Profile=Private LocalIP=Any RemoteIP=Any Protocol=UDP LocalPort=1900 RemotePort=Any Edge=No action=Allow
    netsh advfirewall firewall add rule name="TV Tuner Device (RTP-In)" dir=In Profile=Private LocalIP=Any RemoteIP=Any Protocol=UDP LocalPort=5001-5016 RemotePort=Any Edge=No action=Allow

    netsh advfirewall firewall add rule name="TV Tuner Device (WMDRM-Out)" Direction=Out Profile=Private LocalIP=Any RemoteIP=Any Protocol=UDP LocalPort=Any RemotePort=5757-5772 Edge=No Action=Allow
    netsh advfirewall firewall add rule name="TV Tuner Device (RTSP-Out)" Direction=Out Profile=Private LocalIP=Any RemoteIP=Any Protocol=TCP LocalPort=Any RemotePort=554 Edge=No Action=Allow
    netsh advfirewall firewall add rule name="TV Tuner Device (UPnP-Out)" Direction=Out Profile=Private LocalIP=Any RemoteIP=Any Protocol=TCP LocalPort=Any RemotePort=2869 Edge=No Action=Allow
    netsh advfirewall firewall add rule name="TV Tuner Device (SSDP-Out)" Direction=Out Profile=Private LocalIP=Any RemoteIP=Any Protocol=UDP LocalPort=Any RemotePort=1900 Edge=No Action=Allow[/code]

    Note: My cmd line above only enables Private profile; the Ceton setup package will enable Private, Domain and Public