Hello kpss-ga,
I'm assuming that your question is equivalent
to "What are the characteristics of the star,
ring, bus, and mesh network topologies for
broadcast transmissions and communication
collisions."
We define the topologies as:
- star: one node, in the center, is connected
to every other node. the non-center
nodes are only connected to the center
node.
- ring: each node is connected to exactly two
nodes.
- bus: all nodes share one communication medium.
- mesh: a network topology in which there are at
least two nodes with two or more paths
between them.
These definitions agree with the ones written here:
http://www.its.bldrdoc.gov/fs-1037/dir-024/_3535.htm
Each topology has the following characteristics
for broadcast transmissions:
- star: excellent for broadcast. a message from
a center node reaches all other nodes in
one hop, and a non-center node reaches
all other non-center nodes in two hops.
- ring: for a ring with 'n' nodes, it takes O(n)
hops for a broadcast message to reach
all nodes. Also, the broadcast message
does not reach every node at the same time.
- bus: is broadcast by definition.
- mesh: improves, as with the root (square-root,
cube-root, etc), as the number of paths
between nodes increases. a ring is an
instance of mesh. a fully connected graph
is also a mesh where broadcast is trivial.
For collisions, the characteristics are:
- star: the center node is a bottle-neck. any
non-center node must secure time with the
center node before sending a message.
- ring: to avoid collisions, two nodes must secure
transmission time with every node along
the path between them. without this,
collisions could be quite high.
- bus: each node has to secure the single
transmission medium. the risk for
collisions is the highest.
- mesh: the probability of collisions decreases
as the number of paths between nodes
increases. again, ring is one extreme
and a fully connected network is the other.
a fully connected network has no collisions.
I hope that answers your question.
dogbite-ga |