Possible for linux bridge to intercept traffic?
- by A G
I have a linux machine setup as a bridge between a client and a server;
brctl addbr0
brctl addif br0 eth1
brctl addif br0 eth2
ifconfig eth1 0.0.0.0
ifconfig eth2 0.0.0.0
ip link set br0 up
I also have an application listening on port 8080 of this machine.
Is it possible to have traffic destined for port 80 to be passed to my application?
I have…