vote up 2 vote down star

I'm writing application which controls Linux firewall (using iptables). I need to implement some port triggering. There is TRIGGER target which seems to be suitable for it. However, I can't find good documentation of it (actually it's really hard to find any documentation of this target). Does anybody can redirect me to any information about TRIGGER target of iptables?

flag

44% accept rate

3 Answers

vote up 1 vote down

This is the official documentation for iptables. I wasn't able to find a clear-cut answer directly, but since you didn't mention having looked there, I thought it worthwhile to include.

link|flag
Thanks for the link. Few good tutorials and descriptions of iptables can be found there, but unfortunately I haven't found anything about port triggering. Maybe this is relatively new functionality, so the good documentation is not available yet... – o-l-o Apr 2 at 9:50
vote up 1 vote down

I think the "port knocking" or whatever, is better handled by ipt_RECENT.

You can certainly set up rules with ipt_RECENT to allow (or indeed, forbid) traffic through one port after it's seen connections recently to another.

See the iptables man page for more info.

link|flag
Thanks for interesting idea. I need to take closer look on it. – o-l-o Apr 2 at 16:35
vote up 0 vote down

I think following two urls may give some ideas for port triggering:

http://porttriggering.blogspot.com/

http://www.elbeno.com/openwrt/openwrt_porttrigger.html

link|flag
Thanks. However, I know the concept of port triggering quite well. I'm looking for some detailed description of TRIGGER target of iptables. One of your link also mentions that there is very little documentation on the web about this topic. – o-l-o Apr 2 at 16:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.