In: Computer Science
Describe how frame transmission takes place in a LAN with a physical ring topology.
A physical ring topology consists of all devices, computers connected in a loop. device connection creates a circular data path. Each device on the network is connected to two other devices. In the ring topology or ring network, packets transfer from each device in way untill they reach their destination. Ring topology permits data in one direction only (Unidirectional).
Ring topology uses a communication protocol called the Token ring. It uses a frame called token A token is a special frame of 3 bytes that travel across all ring of stations.
When there is no data or frames transfer from any channel, the Token frame is repeated from station to station. The token frame is 3 bytes in size.
Start Delimiter (SD) | Access control(AC) | End Delimeter(ED) |
8 bits | 8 bits | 8 bits |
SD | AC | FC | DA | SA | Data | CRC | ED | FS |
1 | 1 | 1 | 6 | 6 | >=0 | 1 | 1 | 1 |
Data frames carry information for upper-layer protocols.
SD - It alerts stations for the arrival of the token/ data frame.
AC- It consists of in form of most significant to least significant. It has priority and reservation bits in order P, P, P, T, M, R, R, R. P for priority, R for reservation, and T for specifying token frame.
FC - It has 2 bits which indicate if the frame contains data or control information.
DA - SA - it contains a source and destination address. (MAC Address)
Data - It can have a length field of 0 or maximum bytes.
CRC-Its 32 bits, It checks for errors in frames and corrupted frames.
ED - Used to mark the end of the frame.
FS - terminates the frame.
There are 5 processes to be followed for token insertion.