Advertisement
Guest User

Untitled

a guest
Apr 28th, 2013
393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1.  
  2.  
  3.  
  4.  
  5.  
  6. 172.16.0.0 255.255.0.0
  7.  
  8. eigrp as 20
  9.  
  10.  
  11.  
  12.  
  13. 5 networks
  14.  
  15. no one from br1 or br2 can telnet to hq
  16. only odds from hq can telnet to hq
  17.  
  18. odds on br 2 can not ping out to hq or br1
  19. odds on br 1 can not ping out to hq lan or br2 lan
  20.  
  21.  
  22. hq 50 pcs /26 255.255.255.192
  23. 172.16.0.0 network
  24. 172.16.0.63 broadcast
  25. first 172.16.0.1
  26. last 172.16.0.62
  27.  
  28. r1 20 pcs /27 255.255.255.224
  29. 172.16.0.64 network
  30. 172.16.0.95 broadcast
  31. 172.16.0.65 first
  32. 172.16.0.94 last
  33.  
  34.  
  35.  
  36. r2 15 pcs /27 255.255.255.224
  37. 172.16.0.96 network
  38. 172.16.0.127 broadcast
  39. 172.16.0.97 first
  40. 172.16.0.126 last
  41.  
  42.  
  43. wan 1 hq - br1 2 hosts /30 255.255.255.252
  44. 172.16.0.128 network
  45. 172.16.0.131 broadcast
  46. 172.16.0.129 first
  47. 172.16.0.130 last
  48.  
  49.  
  50. wan 2 hq - br2 2 hosts /30 255.255.255.252
  51.  
  52. 172.16.0.132 network
  53. 172.16.0.135 broadcast
  54. 172.16.0.133 first
  55. 172.16.0.134 last
  56.  
  57.  
  58.  
  59. hostname R1
  60. !
  61. !
  62. !
  63. !
  64. !
  65. !
  66. !
  67. !
  68. !
  69. !
  70. !
  71. !
  72. no ip domain-lookup
  73. !
  74. !
  75. !
  76. !
  77. !
  78. !
  79. interface FastEthernet0/0
  80. ip address 172.16.0.65 255.255.255.224
  81. ip access-group no-ping-odd in
  82. duplex auto
  83. speed auto
  84. !
  85. interface FastEthernet0/1
  86. no ip address
  87. duplex auto
  88. speed auto
  89. shutdown
  90. !
  91. interface Serial0/0/0
  92. ip address 172.16.0.129 255.255.255.252
  93. clock rate 64000
  94. !
  95. interface Serial0/0/1
  96. no ip address
  97. shutdown
  98. !
  99. interface Vlan1
  100. no ip address
  101. shutdown
  102. !
  103. router eigrp 20
  104. network 172.16.0.64 0.0.0.31
  105. network 172.16.0.128 0.0.0.3
  106. auto-summary
  107. !
  108. ip classless
  109. !
  110. !
  111. ip access-list extended no-ping-odd
  112. deny icmp 172.16.0.64 0.0.0.30 172.16.0.0 0.0.0.63 echo
  113. permit tcp any any
  114. !
  115. !
  116. !
  117. !
  118. !
  119. line con 0
  120. line vty 0 4
  121. password cisco
  122. login
  123. !
  124. !
  125. !
  126. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement