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

Udpxy package?

Hello,

Fighting with IPTV for a while, I finally got igmpproxy working on my 9.1 UTM (Thanks the german forum!)

No luck, I got my IPTV working, but this is broadcasting any requested Stream to the lan, which may kill my wifi...

I would like therefore to try using udpxy instead of igmpproxy, as this should be avoiding the broadcast issue. I have to admit being a linux unexperimented user, so would appreciate if someone could post a compiled version of udpxy (ideally 64 bits) so i can play with it...

Thanks in advance!

Félix

PS: If someone got a way to avoid broadcast on an igmpproxy config instead, I would be happy with it, too [:)]


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

    If there's no igmp Service Definition, then you can create one.

    The igmp Input rule would be specified as:
    source: LAN Network OR ANY (depending on what you want to allow)
    dest: LAN Interface ADDRESS (or LAN & WAN addr; depending on what you want to allow and how this thing is supposed to work)
    service: IGMP
    ALLOW


    For this one:
    iptables -A INPUT -p udp -m udp -d 224.0.0.0/4 -j ACCEPT
    you'd need to create a Network Definition for the 224.0.0.0/4 network.
    Also, you need to figure out if it really needs ALL UDP ports... then:
    source: LAN Network OR ANY (depending on what you want to allow)
    dest: 224.0.0.0/4
    service: All UDP?
    ALLOW


    iptables -I INPUT -p 2 -j ACCEPT
    IP Protocol 2 is IGMP; so this rule here is the same as the igmp one above

    iptables -I OUTPUT -p 2 -j ACCEPT
    also IGMP
    source: LAN Interface ADDRESS (or LAN & WAN addr; depending on what you want to allow and how this thing is supposed to work)
    dest: LAN OR ANY
    service: IGMP
    ALLOW


    Barry
Reply
  • Hi,

    If there's no igmp Service Definition, then you can create one.

    The igmp Input rule would be specified as:
    source: LAN Network OR ANY (depending on what you want to allow)
    dest: LAN Interface ADDRESS (or LAN & WAN addr; depending on what you want to allow and how this thing is supposed to work)
    service: IGMP
    ALLOW


    For this one:
    iptables -A INPUT -p udp -m udp -d 224.0.0.0/4 -j ACCEPT
    you'd need to create a Network Definition for the 224.0.0.0/4 network.
    Also, you need to figure out if it really needs ALL UDP ports... then:
    source: LAN Network OR ANY (depending on what you want to allow)
    dest: 224.0.0.0/4
    service: All UDP?
    ALLOW


    iptables -I INPUT -p 2 -j ACCEPT
    IP Protocol 2 is IGMP; so this rule here is the same as the igmp one above

    iptables -I OUTPUT -p 2 -j ACCEPT
    also IGMP
    source: LAN Interface ADDRESS (or LAN & WAN addr; depending on what you want to allow and how this thing is supposed to work)
    dest: LAN OR ANY
    service: IGMP
    ALLOW


    Barry
Children
No Data