Just for the ones that don’t know. There’s a module a bit hidden in iptables that allows you to write comments on the rules.
It’s specially useful in zeroshell since it’s the only way to have comments in the rules.
You just have to add to a rule (i.e. traffic originating from 127.0.0.1) and in the command box write:
-m comment –comment your_comment
The rule will appear then as:
ACCEPT all opt — in * out * 127.0.0.1 -> 0.0.0.0/0 /* your_comment *
You should be able to use spaces also, but since zeroshell is translating the double quotes (“) into single quotes (‘), that is failing, you still can use underscores tough.
enjoy