Thanks, that’s good tutorial but after several trials I need to change several things. So for B1300 with current firmware I did this in terminal:

iptables -A INPUT -p udp -j REJECT --reject-with icmp-proto-unreachable
iptables -A OUTPUT -p udp -j REJECT --reject-with icmp-proto-unreachable
iptables -I FORWARD -p udp -j DROP
iptables -I FORWARD -p udp -m udp --dport 3478 -j ACCEPT

The last port is for whatsapp calling because it still tries to contact server with UDP, so I have to add them. For the forward rules I changed to Insert because append option is ignored or maybe overridden by other line or script that I don’t know where.