There is 2 ways you can do this. Turn ip forwarding off in the kernel, this will stop any data from travelling between the 2 interfaces.
At the command line type:
Code:
echo "0" > /proc/sys/net/ipv4/ip_forward
Or you could use iptables rules and set default FORWARD policy to drop:
Code:
iptables -P FORWARD DROP