Tuesday, May 14, 2024
 Popular · Latest · Hot · Upcoming
0
rated 0 times [  0] [ 0]  / answers: 1 / hits: 7646  / 2 Years ago, fri, september 30, 2022, 2:55:55

Can anybody help me please how to allow IGMP protocol in UFW?
My provider streams TV signal. I have .m3u8 file as channel list. It contains items as udp://@239.1.1.42:11111.



VLC does not open the stream. When I disable the firewall, it does.



Thanks.


More From » vlc

 Answers
5

For IPTV it is needed to allow both UPD and IGMP protocols.



For UFW edit the /etc/ufw/before.rules file:



# allow IGMP
-A INPUT -i eth0 -p igmp -j ACCEPT
# allow UDP - address range for individual channels
-A INPUT -i eth0 -p udp -d 239.1.2.1/5 --dport 11111 -j ACCEPT

[#25498] Sunday, October 2, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
cklaceowne

Total Points: 228
Total Questions: 102
Total Answers: 111

Location: Ivory Coast
Member since Sun, Mar 7, 2021
3 Years ago
;