Advertisement
Guest User

Untitled

a guest
Dec 11th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. Q1. What is the difference between a unicast, multicast and broadcast address?
  2. - Unicast
  3. o LSB = 0
  4. o From one source to one destination – One-to-One
  5. - Multicast
  6. o LSB = 1
  7. o From one source to all possible destinations – One-to-All
  8. - Broadcast
  9. o From one source to multiple destinations stating an interest in receiving the traffic i.e. One-to-Many
  10.  
  11. Q2. Why is there no need for CSMA/CD on a full-duplex Ethernet LAN?
  12. - There are no collisions, because data is transmitted in both directions alongside each other.
  13. - Collisions can only occur in a shared medium, such as WiFi and older Ethernet technologies such as thinnet and 10/100bT networks, implemented with hubs instead of switches. Hubs are half-duplex.
  14.  
  15. Q3. Compare the data rates of Standard Ethernet, Fast Ethernet, Gigabit Ethernet and Ten-Gigabit Ethernet.
  16. - Standard Ethernet – 10 Mbps
  17. - Fast Ethernet – 100 Mbps
  18. - Gigabit Ethernet – 1,000 Mbps (1 Gbps)
  19. - Ten-Gigabit Ethernet – 10,000 Mbps (10 Gbps)
  20.  
  21. Q4. What are the common Standard Ethernet implementations?
  22. - 10Base5
  23. o Thick coax
  24. o 500m
  25. - 10Base2
  26. o Thin coax
  27. o 185m
  28. - 10Base-T
  29. o 2 UTP
  30. o 100m
  31. - 10Base-F
  32. o 2 Fibre
  33. o 2000m
  34. Q5. What are the common Fast Ethernet implementations?
  35. - 100Base-TX
  36. o STP
  37. o 2 wires
  38. o 100m
  39. - 100Base-FX
  40. o Fibre
  41. o 2 wires
  42. o 100m
  43. - 100Base-T4
  44. o UTP
  45. o 4 wires
  46. o 100m
  47. Q6. What are the common Gigabit Ethernet implementations?
  48. - 1000Base-SX
  49. o Fibre – short-wave
  50. o 2 wires
  51. o 550m
  52. - 1000Base-LX
  53. o Fibre – long-wave
  54. o 2 wires
  55. o 5000m
  56. - 1000Base-CX
  57. o STP
  58. o 2 wires
  59. o 25m
  60. - 1000Base-T4
  61. o Cat 5 UTP
  62. o 4 wires
  63. o 100m 
  64. Q7. What are the common Ten-Gigabit Ethernet implementations?
  65. - 10GBase-S
  66. o Multi-mode Fibre
  67. o 2 wires
  68. o 300m
  69. - 10GBase-L
  70. o Single-mode Fibre
  71. o 2 wires
  72. o 10,000m
  73. - 10GBase-E
  74. o Single-mode Fibre
  75. o 2 wires
  76. o 40,000m
  77.  
  78. Q13. What is the ratio of useful data to the entire packet for the smallest Ethernet frame? What is the ratio for the largest frame?
  79. - Smallest frame
  80. o The minimum length of an Ethernet frame is 64 Bytes. The useful data in that Ethernet frame is 46 Bytes.
  81. o 46 / 64 = 0.7185 = 71.2%
  82. - Largest frame
  83. o The maximum frame length = 1518 Bytes
  84. o Maximum payload length = 1500 Bytes
  85. o 1500 / 1518 = 0.9881 = 98.9%
  86.  
  87. Q14. Suppose the length of a 10Base5 cable is 2500 m. If the speed of propagation in a thick coaxial cable is 200,000,000 m/s, how long does it take for a bit to travel from the beginning to the end of the network? Assume there are 10 µs delay in the equipment.
  88. - ____2500m_____ = 0.0125 ms = 12.5 µs
  89. (200,000,000 m/s)
  90. - 12.5 µs + 10 µs = 22.5 µs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement