Blocking ICMP outgoing requests only in eth1
- by Raj
I am creating a NAT with iptables:
Computer A: eth0 (dhcp) + eth1 (static ip 192.168.0.1 - gateway)
Computer B: eth1 (static ip 192.168.0.2, using Computer A as gateway)
I know how to block ICMP outgoing requests (-A OUTPUT -p icmp --icmp-type echo-request -j DROP), but that would block ICMP requests from Computer A, but not from Computer B (in fact, only for Computer A - Computer B can keep doing those).
I tried with the same command, but adding -o eth1, but that does not block at all. Any idea?