> Hi, > > My IP is dynamically assigned and I want a rule like this one: > > iptables -I INPUT 1 -d my_ip_address -m state --state NEW -j ULOG > > Can a rule work out the IP address of its host? That's a nice question, instead of the dynamic IP on the rule, having a dynamic host on it like: Iptables -I INPUT -I eth0 -d myhost.dyndns.org -p tcp --dport 80 -j ACCEPT When this run's, the rule will stay with the IP address that was grabbed from the dynamic host, and when the IP changes, the rule won't work anymore. My question is, there's no way to make iptables to check always the host instead of translation the host do IP on the rule apply stage? -- To unsubscribe from this list: send the line "unsubscribe netfilter" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html