Changes between Version 6 and Version 7 of Cnbp2019/Agenda/NetworkSetup
- Timestamp:
- Feb 12, 2019, 11:35:42 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Cnbp2019/Agenda/NetworkSetup
v6 v7 162 162 ip name-server 192.248.1.161 163 163 }}} 164 > In your production envir nment you may use your internal dnsresolver if needed.165 - Next you can add a banner to your device. This will display every time you log in to the device164 > In your production environment you may use your internal DNS resolver if needed. 165 - Next, you can add a banner to your device. This will display every time you log in to the device 166 166 {{{ 167 167 banner motd @ Unauthorized Access is Prohibited! @ … … 212 212 213 213 214 == == Core Network Layer====215 216 Let's start Configuring the connectivity between core network (FAC1 and Fac2). We will start with Fac1.214 == Core Network Layer == 215 216 Let's start Configuring the connectivity between the core network (FAC1 and Fac2). We will start with Fac1. 217 217 218 218 - Remember, the core network runs on routed ports. Get the IP from the [#point1 table] … … 222 222 FAC1(config)# interface fastEthernet 0/1 223 223 FAC1(config-if)# description Link to Firewall 224 FAC (config-if)# ip address 10.0.0.1 255.255.255.252225 FAC (config-if)#ipv6 address 2401:dd00:20XY:1::fffe/128226 FAC (config-if)#no shutdown227 FAC (config-if)#exit224 FAC1(config-if)# ip address 10.XY.0.1 255.255.255.252 225 FAC1(config-if)#ipv6 address 2401:dd00:20XY:1::fffe/128 226 FAC1(config-if)#no shutdown 227 FAC1(config-if)#exit 228 228 }}} 229 229 … … 232 232 FAC1(config)# interface fastEthernet 0/0 233 233 FAC1(config-if)# description Link to FAC2 234 FAC (config-if)# ip address 10.0.0.6 255.255.255.252235 FAC (config-if)#ipv6 address 2401:dd00:20XY:2::ffff/128236 FAC (config-if)#no shutdown237 FAC (config-if)#exit234 FAC1(config-if)# ip address 10.XY.0.6 255.255.255.252 235 FAC1(config-if)#ipv6 address 2401:dd00:20XY:2::ffff/128 236 FAC1(config-if)#no shutdown 237 FAC1(config-if)#exit 238 238 }}} 239 239 … … 244 244 245 245 {{{ 246 FAC1(config)# interface fastEthernet 0/1 247 FAC1(config-if)# description Link to FAC1 248 FAC(config-if)# ip address 10.0.0.5 255.255.255.252 249 FAC(config-if)#ipv6 address 2401:dd00:20XY:2::fffe/128 250 FAC(config-if)#no shutdown 251 FAC(config-if)#exit 252 }}} 253 254 - Next we need to configure routing among Core devices. We will configure dynamic routing / OSPF to distribute routing. 255 * On FAC1 256 257 258 246 FAC2(config)# interface fastEthernet 0/1 247 FAC2(config-if)# description Link to FAC1 248 FAC2(config-if)# ip address 10.XY.0.5 255.255.255.252 249 FAC2(config-if)#ipv6 address 2401:dd00:20XY:2::fffe/128 250 FAC2(config-if)#no shutdown 251 FAC2(config-if)#exit 252 }}} 253 254 - Next, we need to configure routing among Core devices. We will configure dynamic routing / OSPF to distribute routing. 255 * On FAC1, Define OSPF process and Process ID. In this lab use process ID as 1 256 {{{ 257 FAC1(config)#router ospf 1 258 }}} 259 * Give the router ID 260 {{{ 261 FAC1(config-router)#router-id 10.XY.0.1 262 }}} 263 * You are announcing to the core network (10.XY.1.0/24) in area 2. Use this command for this 264 {{{ 265 FAC1config-router)#network 10.XY.0.0 0.0.0.255 area 2 266 FAC1(config-router)#exit 267 }}} 268 * Now you have enable OSPF on FAC1 Switch. Now lets add the default Route. 269 {{{ 270 FAC1(config)# ip route 0.0.0.0 0.0.0.0 10.XY.0.1 271 }}} 272 - Follow the same steps in FAC2 273 274 {{{ 275 FAC2(config)#router ospf 1 276 FAC2(config-router)#router-id 10.XY.0.5 277 FAC2(config-router)#network 10.XY.0.0 0.0.0.255 area 2 278 FAC2(config-router)#exit 279 FAC2(config)# ip route 0.0.0.0 0.0.0.0 10.0.0.6 280 }}} 281 282 283 == Distribution Layer == 259 284 260 285