Advertisement
Guest User

Untitled

a guest
Jul 19th, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 KB | None | 0 0
  1.  
  2. IT2762 Network and Communication
  3. Tutorial 08 – Routing Dynamically
  4. AY2018 S1
  5.  
  6. 1) Which statement about network convergence is true?
  7. a) The network is converged when all routers have the same routes in their routing table.
  8. b) The network is converged when all routers have exchanged hello packets.
  9. c) The network is converged when all routers have complete and accurate information about the entire network.
  10. d) The network is converged when all routers have the same metric value to destination networks.
  11.  
  12.  
  13. 2) Which of these routing protocols support only classful networks?
  14. a) OSPF.
  15. b) RIPv1.
  16. c) RIPv2.
  17. d) EIGRP.
  18.  
  19.  
  20. Short Answer Questions
  21.  
  22. 1) List the functions of dynamic routing protocol
  23. Automatic discover remote networks
  24. Maintain up-to-date routing information
  25. Chooses the best path to destination networks
  26. Find a new best path if the current path is no longer available
  27.  
  28. 2) List the 3 main components of dynamic routing protocols.
  29. Data Structures
  30. - Routing protocols typically use tables for operations which is kept in RAM
  31. Routing protocol messages
  32. - Various types of messages are used to discover neighbour router exchange router information and for learing and updating network information
  33. Algorithm
  34. - They use algorithms to find the best path to destination networka
  35.  
  36. 3) List 2 advantages and disadvantages of using dynamic routing protocols.
  37. Advantages
  38. - Router automatically share routing info
  39. - Dynamically determine best paths to destination networks and add the information to its routing tables
  40. - Require less admin overhead compared to static routing
  41. Disadvantages
  42. - Requires more resources like CPU, RAM and network bandwidth
  43. - Less secure compared to static routing
  44.  
  45.  
  46. 4)
  47. Refer to the network topology above. The router interfaces have already been configured with IP addresses. Show the IOS commands to:-
  48. a. Configure the routers with RIPv2
  49. b. Disable RIP updates on the LAN interfaces
  50. a)
  51. R1>en
  52. R1#config t
  53. R1(config-t)#Router rip
  54. R1(config-router)#Version 2
  55. R1(config-router)#Network 192.168.1.0
  56. R1(config-router)#Network 192.168.2.0
  57. R1(config-router)#no auto-summary
  58.  
  59. R2>en
  60. R2#config t
  61. R2(config-t)#router rip
  62. R2(config-router)#version 2
  63. R2(config-router)#network 192.168.2.0
  64. R2(config-router)#network 192.168.3.0
  65. R2(config-router)#network 192.168.4.0
  66. R2(config-router)#no auto-summary
  67.  
  68. R3>en
  69. R3#config t
  70. R3(config-t)#router rip
  71. R3(config-router)#version 2
  72. R3(config-router)#network 192.168.4.0
  73. R3(config-router)#network 192.168.5.0
  74. R3(config-router)#no auto-summary
  75.  
  76. b)
  77. R1(config-router)#no passive-interface g0/0
  78. R2(config-router)#no passive-interface g0/0
  79. R3(config-router)#no passive-interface g0/0
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88. 5)
  89. Refer to the network topology above. The router interfaces have already been configured with IP addresses. R1 is connected on G0/0 and S0/0/0. Configure router R1 with RIPng. Use the process name “NYP” in your configuration.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement