I'd tried posting at dev.openwrt.org but got this super user-friendly response:
Submission rejected as potential spam
I hope someone with trusted account could post this in the openwrt's bug track.
System: CHAOS CALMER (15.05.1, r48532)
Router: Asus RT-N56U
What happens:
It seems that '--dport' option is not recognized for sctp by iptables. Command execution fails.
Expected result:
Command runs successfully and we can create rules with iptables to match by sctp and destination port.
Steps to reproduce:
First install these:
kmod-sctp
libsctp
sctp
sctp-tools
Try to run this:
iptables -A INPUT -p sctp --dport 1234 -j ACCEPT
Shows error:
iptables v1.4.21: unknown option "--dport"
Try `iptables -h' or 'iptables --help' for more information.
Try to run this:
iptables -A INPUT -p sctp -j ACCEPT
Works!