-
Beta Was this translation helpful? Give feedback.
Replies: 0 comments 11 replies
-
Could you clarify what you mean by
Do you mean that the IPTV decoder is not getting an IP address from your IPTV VLAN? |
Beta Was this translation helpful? Give feedback.
-
Thank you very much for your help and at all for this page!!! Via the link I now find out that Solcon is using the KPN IPTV server. WAN Ranges now set to 213.75.0.0/16 217.166.0.0/16 and now it works. Only issue I am still running into is that IPTV network is forced to the receiver. Not really a problem but this is something I will look into later. Again thank you very much |
Beta Was this translation helpful? Give feedback.
-
Conclusion for Solcon: vim 15-iptv.shIPTV_WAN_INTERFACE="eth4" if podman container exists iptv; then |
Beta Was this translation helpful? Give feedback.
Conclusion for Solcon:
vim 15-iptv.sh
IPTV_WAN_INTERFACE="eth4"
IPTV_WAN_RANGES="213.75.0.0/16 217.166.0.0/16"
IPTV_WAN_VLAN="188"
IPTV_WAN_DHCP_OPTIONS="-O staticroutes -V IPTV_RG"
IPTV_LAN_INTERFACES="br50"
if podman container exists iptv; then
podman rm -f iptv
fi
podman run --network=host --privileged
--name iptv -i -d --restart on-failure:5
-e IPTV_WAN_INTERFACE="$IPTV_WAN_INTERFACE"
-e IPTV_WAN_RANGES="$IPTV_WAN_RANGES"
-e IPTV_WAN_VLAN="$IPTV_WAN_VLAN"
-e IPTV_WAN_DHCP_OPTIONS="$IPTV_WAN_DHCP_OPTIONS"
-e IPTV_LAN_INTERFACES="$IPTV_LAN_INTERFACES"
-e IPTV_LAN_RANGES="192.168.50.0/24"
fabianishere/udm-iptv -d -v