Changes between Version 3 and Version 4 of ToolTricks


Ignore:
Timestamp:
11/25/06 00:14:26 (6 years ago)
Author:
perry
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ToolTricks

    v3 v4  
    4747 
    4848Doing decompression in a seperate thread is likely to be added to some later release of libtrace. 
     49 
     50== NAT from one IP range to another == 
     51This will map 10.1.0.0/16 on eth0 to 192.168.0.0/16 on eth1. 
     52{{{ 
     53 tracefilter int:eth0 'src 10.1.0.0/16' pcapfile:- | traceanon -s -p 192.168.0.0/16 pcapfile:- int:eth1 
     54 tracefilter int:eth1 'dst 192.168.0.0/16' pcapfile:- | traceanon -d -p 10.1.0.0/16 pcapfile:- int:eth0 
     55}}}