Guest User!

You are not Sophos Staff.

This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

T-Home Entertain / IPTV

Hi,

ich habe heute T-Home Entertain erhalten. Jetzt habe ich ein kleines Problem, das Fernsehen funktioniert soweit, allerdings bleibt der Stream nach ein paar Sekunden hängen. Umschalten auf den nächsten Sender und ich habe wieder ein paar Sekunden. Man könnte das Power Zapping nennen! [;)] Die Hotline sagt ist ein unsupportetes Gerät, Auskünfte über Ports können leider nicht weitergegeben werden, nicht für Endkunden bestimmt.

Das Streaming läuft ja über UDP Ports. Hat das jemand am laufen? Ich setze die aktuelle Beta ein mit Kernel Mode pppoe.

Bin über jeden Tipp dankbar und werde mich mal weiter ans Debugging machen...

Danke!

MfG, Mario


This thread was automatically locked due to age.
Parents
  • Nabend,

    meine igmpproxy.conf


    ## This sample configuration assumes your PPP is on eth0
    ## And your internal network is 192.168.1.0/24
    ## with just ONE single receiver on 192.168.1.61

    ##------------------------------------------------------
    ## Enable Quickleave mode (Sends Leave instantly)
    ##------------------------------------------------------
    quickleave

    ##------------------------------------------------------
    ## Configuration for Upstream Interface
    ##------------------------------------------------------

    # Set this to the VLAN interface your PPP is running on

    phyint eth0.8 upstream ratelimit 0 threshold 1

    # These are the T-Home Entertain networks
    altnet 239.35.0.0/16
    altnet 217.0.119.0/24
    altnet 193.158.35.0/24

    # Only one of the below config lines should be enabled!
    # Set this to your receiver network
    altnet 192.168.2.0/24
    # If it's only ONE receiver you can use
    #altnet 192.168.1.61/32

    ##------------------------------------------------------
    ## Configuration for Downstream Interface
    ##------------------------------------------------------

    # Set this to the interface for your receiver network
    # (usually your internal network adapter)

    phyint eth1 downstream ratelimit 0 threshold 1

    # Only one of the below config lines should be enabled!
    # Set this to your receiver network
    altnet 192.168.2.0/24
    # If it's only ONE receiver you can use
    #altnet 192.168.1.61/32

    ##------------------------------------------------------
    ## Configuration for Disabled Interfaces
    ##------------------------------------------------------
    ##
    ## You have to disable EVERY interface that is not involved!
    ## Usually it will be every network that ifconfig -a shows
    ## except yor VLAN8 interface!

    phyint eth0.7 disabled
    phyint eth0 disabled
    phyint eth2 disabled
    phyint lo disabled
    phyint ppp0 disabled



    Und ein Ausschnitt aus der igmprtd mit den Firewall Regeln


            echo -n "   Starting IGMP Proxy: Requesting IP-address for interface $INTERNET_IF.8 "
            if ! ifconfig $INTERNET_IF.8 2>/dev/null | grep "inet addr" &>/dev/null; then
                    if ps -ef | grep -i $DHCPD_BIN &>/dev/null; then
                            $DHCPD_BIN -k $INTERNET_IF.8 &>/dev/null
                            killproc -TERM $DHCPD_BIN
                            sleep 1
                    fi
                    startproc $DHCPD_BIN $INTERNET_IF.8 &>/dev/null
                    rc_status -v
                    sleep $DHCPD_TIME
                    echo "-> `ifconfig  $INTERNET_IF.8 | grep inet | sed -e 's/^[ \t]*//'`"
            else
                    rc_status -s
            fi

            rc_reset

            iptables -I INPUT -p 2 -j ACCEPT &>/dev/null
            iptables -I OUTPUT -p 2 -j ACCEPT &>/dev/null

            ### TEST TEST TEST ###
            ### TEST TEST TEST ###

            iptables -t nat -A POSTROUTING  -o $INTERNET_IF.8 -j MASQUERADE
            iptables -A FORWARD -s 217.0.119.0/24 -i $INTERNET_IF.8 -j ACCEPT
            iptables -A FORWARD -s 193.158.35.0/23 -i $INTERNET_IF.8 -j ACCEPT
            iptables -A FORWARD -s 87.141.147.0/24 -i $INTERNET_IF.8 -j ACCEPT
            iptables -A FORWARD -s 217.6.167.0/24 -i $INTERNET_IF.8 -j ACCEPT

            ### TEST TEST TEST ###
            ### TEST TEST TEST ###

            echo -n "   Starting IGMP Proxy: Starting daemon"
            startproc $IGMPRTD_BIN $IGMPRTD_CONFIG $DEBUG >>$IGMPRTD_LOG 2>&1
  • Nimm mal
    altnet 192.168.2.0/24
    aus dem upstream Teil raus und kommentiere
    phyint eth0 disabled
    aus.
    Hilft das?

    Nabend,

    meine igmpproxy.conf


    ## This sample configuration assumes your PPP is on eth0
    ## And your internal network is 192.168.1.0/24
    ## with just ONE single receiver on 192.168.1.61

    ##------------------------------------------------------
    ## Enable Quickleave mode (Sends Leave instantly)
    ##------------------------------------------------------
    quickleave

    ##------------------------------------------------------
    ## Configuration for Upstream Interface
    ##------------------------------------------------------

    # Set this to the VLAN interface your PPP is running on

    phyint eth0.8 upstream ratelimit 0 threshold 1

    # These are the T-Home Entertain networks
    altnet 239.35.0.0/16
    altnet 217.0.119.0/24
    altnet 193.158.35.0/24

    # Only one of the below config lines should be enabled!
    # Set this to your receiver network
    altnet 192.168.2.0/24
    # If it's only ONE receiver you can use
    #altnet 192.168.1.61/32

    ##------------------------------------------------------
    ## Configuration for Downstream Interface
    ##------------------------------------------------------

    # Set this to the interface for your receiver network
    # (usually your internal network adapter)

    phyint eth1 downstream ratelimit 0 threshold 1

    # Only one of the below config lines should be enabled!
    # Set this to your receiver network
    altnet 192.168.2.0/24
    # If it's only ONE receiver you can use
    #altnet 192.168.1.61/32

    ##------------------------------------------------------
    ## Configuration for Disabled Interfaces
    ##------------------------------------------------------
    ##
    ## You have to disable EVERY interface that is not involved!
    ## Usually it will be every network that ifconfig -a shows
    ## except yor VLAN8 interface!

    phyint eth0.7 disabled
    phyint eth0 disabled
    phyint eth2 disabled
    phyint lo disabled
    phyint ppp0 disabled



    Und ein Ausschnitt aus der igmprtd mit den Firewall Regeln


            echo -n "   Starting IGMP Proxy: Requesting IP-address for interface $INTERNET_IF.8 "
            if ! ifconfig $INTERNET_IF.8 2>/dev/null | grep "inet addr" &>/dev/null; then
                    if ps -ef | grep -i $DHCPD_BIN &>/dev/null; then
                            $DHCPD_BIN -k $INTERNET_IF.8 &>/dev/null
                            killproc -TERM $DHCPD_BIN
                            sleep 1
                    fi
                    startproc $DHCPD_BIN $INTERNET_IF.8 &>/dev/null
                    rc_status -v
                    sleep $DHCPD_TIME
                    echo "-> `ifconfig  $INTERNET_IF.8 | grep inet | sed -e 's/^[ \t]*//'`"
            else
                    rc_status -s
            fi

            rc_reset

            iptables -I INPUT -p 2 -j ACCEPT &>/dev/null
            iptables -I OUTPUT -p 2 -j ACCEPT &>/dev/null

            ### TEST TEST TEST ###
            ### TEST TEST TEST ###

            iptables -t nat -A POSTROUTING  -o $INTERNET_IF.8 -j MASQUERADE
            iptables -A FORWARD -s 217.0.119.0/24 -i $INTERNET_IF.8 -j ACCEPT
            iptables -A FORWARD -s 193.158.35.0/23 -i $INTERNET_IF.8 -j ACCEPT
            iptables -A FORWARD -s 87.141.147.0/24 -i $INTERNET_IF.8 -j ACCEPT
            iptables -A FORWARD -s 217.6.167.0/24 -i $INTERNET_IF.8 -j ACCEPT

            ### TEST TEST TEST ###
            ### TEST TEST TEST ###

            echo -n "   Starting IGMP Proxy: Starting daemon"
            startproc $IGMPRTD_BIN $IGMPRTD_CONFIG $DEBUG >>$IGMPRTD_LOG 2>&1
Reply
  • Nimm mal
    altnet 192.168.2.0/24
    aus dem upstream Teil raus und kommentiere
    phyint eth0 disabled
    aus.
    Hilft das?

    Nabend,

    meine igmpproxy.conf


    ## This sample configuration assumes your PPP is on eth0
    ## And your internal network is 192.168.1.0/24
    ## with just ONE single receiver on 192.168.1.61

    ##------------------------------------------------------
    ## Enable Quickleave mode (Sends Leave instantly)
    ##------------------------------------------------------
    quickleave

    ##------------------------------------------------------
    ## Configuration for Upstream Interface
    ##------------------------------------------------------

    # Set this to the VLAN interface your PPP is running on

    phyint eth0.8 upstream ratelimit 0 threshold 1

    # These are the T-Home Entertain networks
    altnet 239.35.0.0/16
    altnet 217.0.119.0/24
    altnet 193.158.35.0/24

    # Only one of the below config lines should be enabled!
    # Set this to your receiver network
    altnet 192.168.2.0/24
    # If it's only ONE receiver you can use
    #altnet 192.168.1.61/32

    ##------------------------------------------------------
    ## Configuration for Downstream Interface
    ##------------------------------------------------------

    # Set this to the interface for your receiver network
    # (usually your internal network adapter)

    phyint eth1 downstream ratelimit 0 threshold 1

    # Only one of the below config lines should be enabled!
    # Set this to your receiver network
    altnet 192.168.2.0/24
    # If it's only ONE receiver you can use
    #altnet 192.168.1.61/32

    ##------------------------------------------------------
    ## Configuration for Disabled Interfaces
    ##------------------------------------------------------
    ##
    ## You have to disable EVERY interface that is not involved!
    ## Usually it will be every network that ifconfig -a shows
    ## except yor VLAN8 interface!

    phyint eth0.7 disabled
    phyint eth0 disabled
    phyint eth2 disabled
    phyint lo disabled
    phyint ppp0 disabled



    Und ein Ausschnitt aus der igmprtd mit den Firewall Regeln


            echo -n "   Starting IGMP Proxy: Requesting IP-address for interface $INTERNET_IF.8 "
            if ! ifconfig $INTERNET_IF.8 2>/dev/null | grep "inet addr" &>/dev/null; then
                    if ps -ef | grep -i $DHCPD_BIN &>/dev/null; then
                            $DHCPD_BIN -k $INTERNET_IF.8 &>/dev/null
                            killproc -TERM $DHCPD_BIN
                            sleep 1
                    fi
                    startproc $DHCPD_BIN $INTERNET_IF.8 &>/dev/null
                    rc_status -v
                    sleep $DHCPD_TIME
                    echo "-> `ifconfig  $INTERNET_IF.8 | grep inet | sed -e 's/^[ \t]*//'`"
            else
                    rc_status -s
            fi

            rc_reset

            iptables -I INPUT -p 2 -j ACCEPT &>/dev/null
            iptables -I OUTPUT -p 2 -j ACCEPT &>/dev/null

            ### TEST TEST TEST ###
            ### TEST TEST TEST ###

            iptables -t nat -A POSTROUTING  -o $INTERNET_IF.8 -j MASQUERADE
            iptables -A FORWARD -s 217.0.119.0/24 -i $INTERNET_IF.8 -j ACCEPT
            iptables -A FORWARD -s 193.158.35.0/23 -i $INTERNET_IF.8 -j ACCEPT
            iptables -A FORWARD -s 87.141.147.0/24 -i $INTERNET_IF.8 -j ACCEPT
            iptables -A FORWARD -s 217.6.167.0/24 -i $INTERNET_IF.8 -j ACCEPT

            ### TEST TEST TEST ###
            ### TEST TEST TEST ###

            echo -n "   Starting IGMP Proxy: Starting daemon"
            startproc $IGMPRTD_BIN $IGMPRTD_CONFIG $DEBUG >>$IGMPRTD_LOG 2>&1
Children
No Data