On Sunday 02 February 2003 05:11 pm, gummi7@simnet.is wrote: > Hello > > I'm a linux/iptables/netfilter newbie, but I want to ask you a simple > question. It's a long story and unrellevant to tell you why I want to > do it so i'll just get straigt to the point. > > I want to be able to measure(with my linux router) all the traffic > from the computers on my network that go thrugh a specifc IP number > wich is located in another place in my country. That is, if a computer > on my network accesses a website and goes trough a specifed IP number > to get that website, I want to be able to measure the amount of data > that goes trough that specified IP number, but only the data on my > behalf. Note that I do not have phisical(nor telnet or ssh) access to > the router with the specifed IP number that I want to measure. > > Can I do that with iptables and/or ipfilter? A yes is all I have to > hear if that is possible but an example or a little help wouldn't hurt If you mean that the specific IP is the destination of a packet, IE machines explicitly connect to that IP and it is listed in the header, there is no problem. If you mean that the specific IP is simply a router somewhere that the traffic 'might happen' to pass through in its travels, I think you're out of luck. You can tally all traffic to a specific destination IP with: /sbin/iptables -d w.x.y.z at the top of your FORWARD chain, and then "iptables -L -v -n" will list your rules, and this 'do-nothing' rule will list packet counts and byte totals that matched it without actually having DONE anything. Adding '-j LOG --log-prefix "HIT:"' to the end of the above rule would log information on ALL packets with that IP as destination, but if this is a large amount of traffic then your /var/log/messages (default) logfile would chew up hard drive space at an apalling rate. j