Hide Forgot
In 6.8.1.2.3.2. IPTables Configuration Now: /sbin/iptables -A INPUT -m state --state NEW -m tcp -p udp --dport 25150 -j ACCEPT Should be: /sbin/iptables -A INPUT -m state --state NEW -m udp -p udp --dport 25150 -j ACCEPT
Why worksforme??? You SHOULD NOT mix TCP module (-m tcp) and protocol UDP (-p udp) in the rule. Output: WRONG: $ sudo /sbin/iptables -A INPUT -m state --state NEW -m tcp -p udp --dport 25150 -j ACCEPT RIGHT: iptables: Invalid argument. Run `dmesg' for more information. $ sudo /sbin/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 25150 -j ACCEPT
I'm sorry: Output: WRONG: $ sudo /sbin/iptables -A INPUT -m state --state NEW -m tcp -p udp --dport 25150 -j ACCEPT iptables: Invalid argument. Run `dmesg' for more information. RIGHT: $ sudo /sbin/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 25150 -j ACCEPT
Hello Pavel, My apologies. I accidentally set my comment to private. I've pasted my previous comments below: ============================ Hello Pavel, The deployment guide has been deprecated and was recycled into the Getting Started Guide/Reference Guide/User Guide. These errors have been resolved in the Reference Guide in both 5.4 and 5.5. Should you find other discrepancies, please feel free to create a new ticket. Thank you! ============================ I hope this resolves your concern. Regards, Athene Chan