Quantcast
Channel: All Ethernet Switching posts
Viewing all articles
Browse latest Browse all 10307

Re: EX 2200 firewall filter blocks everything

$
0
0

Hello,

Since this is "family ethernet-switching" filter, it inspects ARP as well but You haven't got a permit term for ARP.

Hence all Your ARP requests even for permitted hosts hit an implicit deny term.

Your filter should look like:

firewall {
         family ethernet-switching {
                  filter Allow {
                           term term1 {
                           from {
                                    source-address {
                                    192.168.1.5/32;
                                    }
                                    destination-address {
                                    192.168.1.10/32;
                                    }
                           }
                           then accept;
                           }
                           term term2 {
                           from {
                                    source-address {
                                    192.168.1.10/32;
                                    }
                                    destination-address {
                                    192.168.1.5/32;
                                    }
                           }
                           then accept;
                           }
                           term term3 {
                           from {
                                    ether-type arp;
                            }
                           then accept;
                           }
                  }
         }
}

HTH

Thx

Alex


Viewing all articles
Browse latest Browse all 10307

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>