Advertisement
Guest User

Orionnet Config

a guest
Jun 24th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.63 KB | None | 0 0
  1. ROUTER
  2.  
  3. enable
  4. configure terminal
  5. host Apollo
  6. interface g0/0.1
  7. encapsulation dot1q 1 native
  8. ip add 10.20.1.254 255.255.255.0
  9. description VLAN 1 ROUTER (BLACKHOLE)
  10. interface g0/0.10
  11. encapsulation dot1q 10 native
  12. ip add 10.20.10.254 255.255.255.0
  13. description VLAN 10 ROUTER (GUEST WIFI)
  14. interface g0/0.15
  15. encapsulation dot1q 15 native
  16. ip add 10.20.15.254 255.255.255.0
  17. description VLAN 15 ROUTER (AUTHENTICATED WIFI)
  18. interface g0/0.20
  19. encapsulation dot1q 20 native
  20. ip add 10.20.20.254 255.255.255.0
  21. description VLAN 20 ROUTER (Wired LAN)
  22. interface g0/0.25
  23. encapsulation dot1q 25 native
  24. ip add 10.20.25.254 255.255.255.0
  25. description VLAN 25 ROUTER (VoIP LAN)
  26. interface g0/0.30
  27. encapsulation dot1q 30 native
  28. ip add 10.20.30.254 255.255.255.0
  29. description VLAN 30 ROUTER (Virtualized LAN)
  30. interface g0/0.31
  31. encapsulation dot1q 31 native
  32. ip add 10.20.31.254 255.255.255.0
  33. description VLAN 31 ROUTER (OOB Management/VPN Traffic)
  34. interface g0/0.99
  35. encapsulation dot1q 99 native
  36. ip add 10.20.99.254 255.255.255.0
  37. description VLAN 99 ROUTER (DMZ)
  38. interface gigabitEthernet0
  39. no shutdown
  40. interface fastEthernet8
  41. ip add 192.168.0.248 255.255.255.0
  42. no shutdown
  43. exit
  44. ip dhcp pool VLAN10
  45. network 10.20.10.0 255.255.255.0
  46. default-router 10.20.10.254
  47. dns-server 10.20.30.5
  48. lease 0 6 0
  49. ip dhcp pool VLAN15
  50. network 10.20.15.0 255.255.255.0
  51. default-router 10.20.15.254
  52. dns-server 10.20.30.5
  53. lease 0 23 0
  54. ip dhcp pool VLAN20
  55. network 10.20.20.0 255.255.255.0
  56. default-router 10.20.20.254
  57. dns-server 10.20.30.5
  58. lease 30 23 0
  59. ip dhcp pool VLAN25
  60. network 10.20.25.0 255.255.255.0
  61. default-router 10.20.25.254
  62. option 150 ip 10.20.30.35
  63. dns-server 10.20.30.5
  64. lease 364 23 0
  65. ip dhcp pool VLAN30
  66. network 10.20.30.0 255.255.255.0
  67. default-router 10.20.30.254
  68. option 150 ip 10.20.30.35
  69. dns-server 10.20.30.5
  70. lease 364 23 0
  71. ip dhcp pool VLAN31
  72. network 10.20.31.0 255.255.255.0
  73. default-router 10.20.31.254
  74. option 150 ip 10.20.30.35
  75. dns-server 10.20.30.5
  76. lease 0 8 0
  77. line vty 0 4
  78. password <placeholder>
  79. logging synchronous
  80. line con 0
  81. password $<placeholder>$
  82. logging synchronous
  83. service password-encryption
  84.  
  85.  
  86.  
  87.  
  88. Switch
  89.  
  90. enable
  91. configure terminal
  92. host Hermes
  93. service password-encryption
  94. vlan 10
  95. description GUESTWIFI
  96. vlan 15
  97. description AUTHWIFI
  98. vlan 20
  99. description WIREDLAN
  100. vlan 25
  101. description VOIPLAN
  102. vlan 30
  103. description VIRTLAN
  104. vlan 31
  105. description VPNLAN
  106. interface vlan 1
  107. ip address 10.20.1.253 255.255.255.0
  108. description DEFAULT SVI
  109. interface vlan 10
  110. ip address 10.20.10.253 255.255.255.0
  111. description VLAN 10 SVI
  112. interface vlan 15
  113. ip address 10.20.15.253 255.255.255.0
  114. description VLAN 15 SVI
  115. interface vlan 20
  116. ip address 10.20.20.253 255.255.255.0
  117. description VLAN 20 SVI
  118. interface vlan 25
  119. ip address 10.20.25.253 255.255.255.0
  120. description VLAN 25 SVI
  121. interface vlan 30
  122. ip address 10.20.30.253 255.255.255.0
  123. description VLAN 30 SVI
  124. interface vlan 31
  125. ip address 10.20.31.253 255.255.255.0
  126. description VLAN 31 SVI
  127. interface gigabitEthernet0/2
  128. switchport mode trunk
  129. switchport trunk vlan 10,15,20,25,30,31
  130. interface fastEthernet0/1
  131. switchport access vlan 20
  132. switchport mode access
  133. spanning-tree portfast
  134. interface fastEthernet0/3
  135. switchport access vlan 20,25
  136. switchport mode access
  137. spanning-tree portfast
  138. interface range fastEthernet0/6 - fastEthernet0/8
  139. switchport access vlan 20,25,30,31
  140. switchport mode access
  141. spanning-tree portfast
  142. interface fastEthernet0/2
  143. shutdown
  144. interface range fastEthernet0/4 - fastEthernet0/5
  145. shutdown
  146. interface range fastEthernet0/9 - fastEthernet0/22
  147. shutdown
  148. interface range fastEthernet0/23 - fastEthernet0/24
  149. switchport mode access
  150. switchport access vlan 1
  151. spanning-tree portfast
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement