Hello everyone,
I receive an IPTV service on port 7651, can you help me in the configuration?
Thank you.
What other rules can I add?
I receive an IPTV service on port 7651, can you help me in the configuration?
Thank you.
Code:
iptables -D POSTROUTING -t mangle -o br0 -d 192.168.1.2/31 -m mark --mark 0x80000000/0x8000ffff -p tcp --sport 7651 -j MARK --set-mark ${Streaming_mark_down} &> /dev/null #Gaming (3/3) - Routes Unidentified Traffic into "Gaming", instead of "Others", for LAN clients specified
iptables -A POSTROUTING -t mangle -o br0 -d 192.168.1.2/31 -m mark --mark 0x80000000/0x8000ffff -p tcp --sport 7651 -j MARK --set-mark ${Streaming_mark_down}
Code:
iptables -D POSTROUTING -t mangle -o $wan -s 192.168.1.2/31 -m mark --mark 0x40000000/0x4000ffff -p tcp --dport 7651 -j MARK --set-mark ${Streaming_mark_up} &> /dev/null #Gaming (3/3) - Routes Unidentified Traffic into "Gaming", instead of "Others", from specified LAN devices in rule (line 1/2)
iptables -A POSTROUTING -t mangle -o $wan -s 192.168.1.2/31 -m mark --mark 0x40000000/0x4000ffff -p tcp --dport 7651 -j MARK --set-mark ${Streaming_mark_up}
What other rules can I add?