you have a list of IPs? say, for example, you want to accept those IPs for input (one IP per line). I guess this will work: cat /etc/iplist.txt | while read anIP; do iptables -A INPUT -s $anIP -j ACCEPT done; On 8/31/05, Agung <duppeh@xxxxxxxxx> wrote: > let say... i have lists of ip in /etc/iplist.txt > is it possible to call that list, like perhaps in pf > table <ip> persist file "/etc/iplist.txt" ? > or i should use some bash scripting ? > thank you for your assistance :-) > > > > ____________________________________________________ > Start your day with Yahoo! - make it your home page > http://www.yahoo.com/r/hs > > >