One question.
I redid my firewall rules and used
http://wiki.mikrotik.com/wiki/Manual:IP ... c_examples.
When pasting (from last section) into terminal
add chain=icmp protocol=icmp icmp-options=0:0 action=accept \
comment="echo reply"
add chain=icmp protocol=icmp icmp-options=3:0 action=accept \
comment="net unreachable"
add chain=icmp protocol=icmp icmp-options=3:1 action=accept \
comment="host unreachable"
add chain=icmp protocol=icmp icmp-options=3:4 action=accept \
comment="host unreachable fragmentation required"
add chain=icmp protocol=icmp icmp-options=4:0 action=accept \
comment="allow source quench"
add chain=icmp protocol=icmp icmp-options=8:0 action=accept \
comment="allow echo request"
add chain=icmp protocol=icmp icmp-options=11:0 action=accept \
comment="allow time exceed"
add chain=icmp protocol=icmp icmp-options=12:0 action=accept \
comment="allow parameter bad"
add chain=icmp action=drop comment="deny all other types"
I get an error message from this line:
add chain=icmp protocol=icmp icmp-options=12:0 action=accept \
comment="allow parameter bad"
[admin@MikroTik] /ip firewall filter> comment="allow parameter bad"
expected end of command (line 1 column 9)
I removed the comment and pasted it into terminal and then added comment, so no harm done.
But I'm still curious why?!
Any ideas?