-  Suppose an Ethernet switch
    receives an Ethernet frame
    on some port P:
 
 
   if ( Destination Addr ∈ Forwarding Table(Q (≠ P)) )
   {
      Forward frame on port Q;
       
   }
   else if ( Destination Addr ∈ Forwarding Table(P) )
   {
      Discard frame;
       
   }
   else
   {
      Forward frame on all other port except port P;
       
      (This operation is called: broadcasting)
   }
 |   
 
 
   
 
    |