Changes between Version 6 and Version 7 of Cnbp2019/Agenda/NetworkSetup


Ignore:
Timestamp:
Feb 12, 2019, 11:35:42 AM (5 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Cnbp2019/Agenda/NetworkSetup

    v6 v7  
    162162ip name-server 192.248.1.161
    163163}}}
    164 > In your production envirnment 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
     164> 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
    166166{{{
    167167banner motd @ Unauthorized Access is Prohibited! @
     
    212212
    213213
    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
     216Let's start Configuring the connectivity between the core network (FAC1 and Fac2). We will start with Fac1.
    217217
    218218- Remember, the core network runs on routed ports. Get the IP from the [#point1 table]
     
    222222FAC1(config)# interface fastEthernet 0/1
    223223FAC1(config-if)# description Link to Firewall
    224 FAC(config-if)# ip address 10.0.0.1 255.255.255.252
    225 FAC(config-if)#ipv6 address 2401:dd00:20XY:1::fffe/128
    226 FAC(config-if)#no shutdown
    227 FAC(config-if)#exit
     224FAC1(config-if)# ip address 10.XY.0.1 255.255.255.252
     225FAC1(config-if)#ipv6 address 2401:dd00:20XY:1::fffe/128
     226FAC1(config-if)#no shutdown
     227FAC1(config-if)#exit
    228228}}}
    229229
     
    232232FAC1(config)# interface fastEthernet 0/0
    233233FAC1(config-if)# description Link to FAC2
    234 FAC(config-if)# ip address 10.0.0.6 255.255.255.252
    235 FAC(config-if)#ipv6 address 2401:dd00:20XY:2::ffff/128
    236 FAC(config-if)#no shutdown
    237 FAC(config-if)#exit
     234FAC1(config-if)# ip address 10.XY.0.6 255.255.255.252
     235FAC1(config-if)#ipv6 address 2401:dd00:20XY:2::ffff/128
     236FAC1(config-if)#no shutdown
     237FAC1(config-if)#exit
    238238}}}
    239239
     
    244244
    245245{{{
    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 
     246FAC2(config)# interface fastEthernet 0/1
     247FAC2(config-if)# description Link to FAC1
     248FAC2(config-if)# ip address 10.XY.0.5 255.255.255.252
     249FAC2(config-if)#ipv6 address 2401:dd00:20XY:2::fffe/128
     250FAC2(config-if)#no shutdown
     251FAC2(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{{{
     257FAC1(config)#router ospf 1
     258}}}
     259    * Give the router ID
     260{{{
     261FAC1(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{{{
     265FAC1config-router)#network 10.XY.0.0 0.0.0.255 area 2
     266FAC1(config-router)#exit
     267}}}
     268    * Now you have enable OSPF on FAC1 Switch. Now lets add the default Route.
     269{{{
     270FAC1(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{{{
     275FAC2(config)#router ospf 1
     276FAC2(config-router)#router-id 10.XY.0.5
     277FAC2(config-router)#network 10.XY.0.0 0.0.0.255 area 2
     278FAC2(config-router)#exit
     279FAC2(config)# ip route 0.0.0.0 0.0.0.0 10.0.0.6
     280}}}
     281
     282
     283== Distribution Layer ==
    259284
    260285