Sto cercando di configurare delle regole iptables in base all'interfaccia di rete



codice:
  

Chain INPUT (policy DROP 82 packets, 36710 bytes)
 pkts bytes target     prot opt in     out     source               destination         
    5  1326 ACCEPT     all  --  eth0   *       0.0.0.0/0            0.0.0.0/0           
  190 46372 LOG        all  --  *      *       0.0.0.0/0            0.0.0.0/0           LOG flags 0 level 4 prefix `INPUT:' 
  108  9662 ACCEPT     all  --  eth1   *       0.0.0.0/0            0.0.0.0/0           

Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain OUTPUT (policy ACCEPT 150 packets, 45651 bytes)
 pkts bytes target     prot opt in     out     source               destination
nella catena di input se tolgo la regola che accetta tutto su eth1 dovrei poter entrare lo stesso sulla macchina da eth0, giusto?

codice:
Chain INPUT (policy DROP 82 packets, 36710 bytes)
 pkts bytes target     prot opt in     out     source               destination         
    5  1326 ACCEPT     all  --  eth0   *       0.0.0.0/0            0.0.0.0/0           
  190 46372 LOG        all  --  *      *       0.0.0.0/0            0.0.0.0/0           LOG flags 0 level 4 prefix `INPUT:'        

Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain OUTPUT (policy ACCEPT 150 packets, 45651 bytes)
 pkts bytes target     prot opt in     out     source               destination
invece o ho tutte e due le regole o non accedo alla macchina per esempio in ssh, cosa sbaglio?

La macchina è una virtual machine su vmware server