1 / 17

Ethernet

Ethernet. Ethernet (802.3). 1-persistent CSMA, CD, binary exponential backoff Carrier sense: station listens to channel first. 1-persistent: If idle, station may initiate transmission Collision Detection: continuously monitor channel and if collision, abort transmission immediately.

Download Presentation

Ethernet

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Ethernet

  2. Ethernet (802.3) • 1-persistent CSMA, CD, binary exponential backoff • Carrier sense: station listens to channel first. 1-persistent: If idle, station may initiate transmission • Collision Detection: continuously monitor channel and if collision, abort transmission immediately. • A transmitting station detects more energy than it sends, considers a collision, and sends a jam signal to warn others • To determine the back-off time of a frame, use binary exponential backoff : • each time slot is 51.2 us (10 Mbps, 2500 meters, 4 repeaters) • first collision, retransmission interval = random number between [0,1] • second collision, interval = random number between [0,3] • kth collision, interval = random number between [0, 2^k-1] • upper bound 1023 slots. • Give up after a maximum number of tries.

  3. Why binary exponential backoff • Why not pick a random number from a fixed interval? • Why a fixed small interval not good? • Why a fixed large interval not good?

  4. Binary exponential backoff • The binary exponential backoff is basically how a station uses locally observed information to infer the state of the network and to take the best actions.

  5. 802.3 http://www.erg.abdn.ac.uk/users/gorry/course/lan-pages/csma-cd.html

  6. Problem • In an Ethernet, suppose there are three stations very close to each other, A, B and C. Suppose at time 0, all of them have a frame to send, but the medium is busy. After the medium is free (for the inter-frame gap, 9.6us in some Ethernet), A, B, and C will all send, which results in a collision. They will perform the random back-off algorithm. What is the probability that they will collide again in the next attempt? • 2/3. • 3/4. • 5/8. • None of the above.

  7. Problem • In an Ethernet, suppose there are three stations very close to each other, A, B and C. Suppose at time 0, all of them have a frame to send, but the medium is busy. After the medium is free (for the inter-frame gap, 9.6us in some Ethernet), A, B, and C will all send, which results in a collision. They will perform the random back-off algorithm. What is the probability that they will collide again in the next attempt? • 2/3. • 3/4. • 5/8. • None of the above. • Answer: c. There are 8 possibilities and three will not cause collision – one selects 0, the other two selects 1.

  8. Problem • In an Ethernet, suppose the medium is currently busy, and there are three stations A, B, C, each with exactly one frame to send. When all three frames are sent successfully, which of the following statements is true? • There were at least 2 collisions. • There were at most 3 collisions. • There were at least 3 collisions. • None of the above.

  9. Problem • In an Ethernet, suppose the medium is currently busy, and there are three stations A, B, C, each with exactly one frame to send. When all three frames are sent successfully, which of the following statements is true? • There were at least 2 collisions. • There were at most 3 collisions. • There were at least 3 collisions. • None of the above. • a.

  10. Ethernet Frame Format (a) DIX Ethernet, (b) IEEE 802.3

  11. Minimum Frame Size • Why a minimum frame size is needed? • How long does it take for a station to notice a collision? • The key is that you should be still transmitting when being aware of the collision, because if you finished before the collision, when the collision notifying signal comes, you might think it is for some other people’s frame.

  12. Worst case

  13. Minimum Frame Size • So, if maximum delay is t, the minimum frame size is 2t * bit_rate. • 2t is about 50us. • So the minimum frame size of 10M Ethernet is 512 bits. • What if the speed goes up?

  14. Problem • Hypothetically, suppose it turns out that there cannot be more than 8 stations in any Ethernet. Which of the following statement is true? • The minimum size of the Ethernet frame can be significantly reduced. • The back-off algorithm should be modified. • Both of the above. • None of the above.

  15. Problem • Hypothetically, suppose it turns out that there cannot be more than 8 stations in any Ethernet. Which of the following statement is true? • The minimum size of the Ethernet frame can be significantly reduced. • The back-off algorithm should be modified. • Both of the above. • None of the above. Answer: b. never has to choose a large window size.

  16. Ethernet Performance • Suppose there are k stations. Let p be the probability that a station has a frame to send when the channel is idle. Assume transmission is • independent across stations • independent for one station at different times Find the average number of collisions before a frame is sent. • Three steps: • The probability that one station got the chance to send is A=kp(1-p)k-1. • Maximized when p=1/k. So A is bounded from above by (1-1/k) k-1. • Each contention is independent, so average number of collision is bounded from below by 1/A, which is e when k is large. • P is the time to send a frame, each slot is2t, so channel efficiency is P/P+2et.

  17. Switched Ethernet • Stations connect to a switch using dedicated lines. • Input frames are buffered. • So no collision! • CSMA/CD only runs between the switch port and the station.

More Related