I'm a little confused now. Shouldn't a network switch forwards data only to the devices that needs to receive it (even an unmanned switch). I'm not concerned about restricting access and my goal primary is to keep the traffic between the camera and recorder from clogging up the network. So would having both camera and recorder on the same switch accomplish this?
when a switch gets a packet, it examines the destination mac address. If it doesn't know it, it will be broadcast to all ports.
theoretically this should only happen once since switches remember mac addrs associated to ports.
example
computer A --- Switch a --- Switch b --- computer B
A sends a packet with B's mac, Switch a gets the packet, doesn't find the mac in its table, so it floods all its ports (except the port computer A is connected to of course) and switch b gets the packet.
Switch b checks the packet, forwards it to computer B if it knows which port B is on, if not it floods all ports.
Computer B gets the packet and send a response. Switch b now knows which port it should forward all packet to computer A and sends the packet to that port.
Switch a gets the packet from Switch b, it knows what port computer A is on and send the packet to that port.