bar1

  • Beitritt
  • Level1
  • Punkte14
  • Beiträge2
  • Lösungen0
  • UPDATE

    The following configuration on the controller sets the settings correctly even when re-provisioning:

    <ufc-controller-home>/data/sites/<site-id>/config.gateway.json

    {
    “protocols”: {
    “igmp-proxy”: {
    “interface”: {
    “eth0”: {
    “alt-subnet”: [
    “224.0.0.0/4”,
    “213.3.72.0/24”,
    “195.186.0.0/16”
    ],
    “role”: “upstream”,
    “threshold”: “1”,
    “whitelist”: [
    “239.0.0.0/8”
    ]
    },
    “eth1”: {
    “alt-subnet”: [
    “192.168.1.0/24”
    ],
    “role”: “downstream”,
    “threshold”: “1”
    }
    }
    }
    }
    }

    Originalsprache (Deutsch) anzeigen
  • Here is what you have to do on the USG to get this to work with Swisscom TV:

    The eth1 is the LAN interface, so if a subnet other than 192.168.1/24 is configured, this must be adjusted accordingly

    SSH login to the USG (according to the controller)

    configure.configure
    edit protocols igmp proxy
    set interface eth0 role upstream
    set interface eth1 role downstream
    set interface eth0 alt subnet 224.0.0.0/4
    set interface eth0 alt subnet 213.3.72.0/24
    set interface eth0 alt subnet 195.186.0.0/16
    set interface eth0 whitelist 239.0.0.0/8
    set interface eth1 alt subnet 192.168.1.0/24
    set interface eth0 threshold 1
    set interface eth1 threshold 1
    commit
    save
    exit

    Interestingly, I have the effect that after a software update this setting disappears again… just reconfigure it and you’re done. (I hope UBNT gets these settings into the controller too)

    Originalsprache (Deutsch) anzeigen