Displaying 1 result from an estimated 1 matches for "ifacefilter".
Did you mean:
  ibasefilter
  
2005 Oct 13
4
brouting on interfaces without IP address
...brd ff:ff:ff:ff:ff:ff
bridge:~ # brctl show
bridge name     bridge id               STP enabled     interfaces
bridge          8000.000102030405       no              bridgeint
                                                         bridgeext
bridge:~ # ebtables -t nat -L --Lx
ebtables -t nat -N ifacefilter-int
ebtables -t nat -N proxy
ebtables -t nat -A PREROUTING -i bridgeint -j ifacefilter-int
ebtables -t nat -A ifacefilter-int -p IPv4 --ip-src 192.168.0.0/24 
--ip-proto tcp --ip-dport 80 -j proxy
ebtables -t nat -A proxy -j mark --set-mark 0x1 --mark-target CONTINUE
ebtables -t nat -A proxy -j dna...