Changes between Version 11 and Version 12 of ipv6v4config


Ignore:
Timestamp:
May 9, 2017, 5:57:51 AM (8 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ipv6v4config

    v11 v12  
    117117[[Image(https://ws.learn.ac.lk/raw-attachment/wiki/ipv6v4config/IPv4.jpg)]]
    118118
    119 You can refer the following table for assign  Interface IP's.
     119You can refer the following [=#point1 table] for assign  Interface IP's.
    120120
    121121{{{#!th
     
    136136}}}
    137137{{{#!td rowspan=3 align=justify
    138 Routing
     138Core
    139139}}}
    140140{{{#!td
     
    213213|---------------
    214214
    215 Refer the following table for the interface's switchport mode configuration
     215Refer the following [=#point2 table] for the interface's switchport mode configuration
    216216
    217217{{{#!th
     
    318318|----------------
    319319
    320 ==== Core Network ====
    321 
    322 Let's start Configuring the connectivity between core network (!CampusCore, FacACore and FacBCore).
     320==== Core Network Layer====
     321
     322Let's start Configuring the connectivity between core network (!CampusCore, FacACore and FacBCore). We will start from CampusCore.
     323
     324 - Login to CampusCore device. Give your console port password (class password)
     325 - Go to config mode from user mode. Give your enable password (class password)
     326 - Core network runs on VLAN 2. Create VLAN 2 and name it '''Core'''
     327{{{
     328CampusCore(config)# vlan 2
     329CampusCore(config-vlan)# name Core
     330CampusCore(config-vlan)# exit
     331}}}
     332 - Then assign the IP Address to the VLAN interface. Get the IP from the [#point1 table]
     333{{{
     334CampusCore(config)#interface vlan 2
     335CampusCore(config-if)# ip address 10.0.2.1 255.255.255.0
     336CampusCore(config-if)# exit
     337}}}
     338 - Finally configure fast ethernet interfaces switchport modes. You can find then from the [#point2 table]
     339    * Fisrt make the interface a trunk port. This is for the FacACore link
     340{{{
     341CampusCore(config)#interface FastEthernet 1/0
     342CampusCore(config-if)#switchport mode trunk
     343}}}
     344    * Define the encapsulation
     345{{{
     346CampusCore(config-if)#switchport trunk encapsulation dot1q
     347}}}
     348    * Give the Description of the interface
     349{{{
     350CampusCore(config-if)#description Core link to FacACore
     351CampusCore(config-if)#exit
     352}}}
     353    * Follow the same procedure for FacBCore link
     354{{{
     355CampusCore(config)#interface FastEthernet 1/1
     356CampusCore(config-if)#switchport mode trunk
     357CampusCore(config-if)#switchport trunk encapsulation dot1q
     358CampusCore(config-if)#description Core link to FacACore
     359CampusCore(config-if)#exit
     360}}}
     361
     362 - You have successfully configured the CampusCore device for you core networks connectivity. Let's move on to FacACore device.
     363{{{
     364FacACore(config)# vlan 2
     365FacACore(config-vlan)# name Core
     366FacACore(config-vlan)# exit
     367FacACore(config)#interface vlan 2
     368FacACore(config-if)# ip address 10.0.2.2 255.255.255.0
     369FacACore(config-if)# exit
     370FacACore(config)#interface FastEthernet 1/15
     371FacACore(config-if)#switchport mode trunk
     372FacACore(config-if)#switchport trunk encapsulation dot1q
     373FacACore(config-if)#description Core link to CampusCore
     374FacACore(config-if)#exit
     375}}}
     376
     377 - Now let's configure FacBCore
     378{{{
     379FacBCore(config)# vlan 2
     380FacBCore(config-vlan)# name Core
     381FacBCore(config-vlan)# exit
     382FacBCore(config)#interface vlan 2
     383FacBCore(config-if)# ip address 10.0.2.3 255.255.255.0
     384FacBCore(config-if)# exit
     385FacBCore(config)#interface FastEthernet 1/15
     386FacBCore(config-if)#switchport mode trunk
     387FacBCore(config-if)#switchport trunk encapsulation dot1q
     388FacBCore(config-if)#description Core link to CampusCore
     389FacBCore(config-if)#exit
     390}}}
     391
     392 - Finally Verify the connectivity
     393   * Go to FacACore device
     394   * Go to privileged mode and ping CampusCore and FacBCore
     395{{{
     396ping 10.0.2.1
     397ping 10.0.2.3
     398}}}
     399   * You should get a positive reply with '''"!!"'''
     400
     401==== Distribution Network Layer ====
     402
     403Let's Start Configuring the distribution layer of your campus LAN. Here you will have to configure both Layer 3 switches (FacACore and FacBCore) and Layer 2 Switches (FacASw and FacBSw). Let's start from Layer 3 devices.
     404
     405 - Login to FacACore device
     406 - Go to config mode from privileged mode
     407 - FacACore is the Core device in Faculty A and It can have different departments. In this scenario department 1 is in faculty A and It's VLAN is VLAN10. Create VLAN 10 and Name it '''Dept1'''
     408{{{
     409FacACore(config)# vlan 10
     410FacACore(config-vlan)# name Dept1
     411FacACore(config-vlan)# exit
     412}}}
     413 - Then assign the IP Address to the VLAN interface. Get the IP from the [#point1 table]
     414{{{
     415FacACore(config)#interface vlan 10
     416FacACore(config-if)# ip address 10.0.10.254 255.255.255.0
     417FacACore(config-if)# exit
     418}}}
     419 - Next configure fast ethernet interfaces switchport modes. You can find then from the [#point2 table]
     420    * Fisrt make the interface a trunk port.
     421{{{
     422FacACore(config)#interface FastEthernet 1/0
     423FacACore(config-if)#switchport mode trunk
     424}}}
     425    * Define the encapsulation
     426{{{
     427FacACore(config-if)#switchport trunk encapsulation dot1q
     428}}}
     429    * Give the Description of the interface
     430{{{
     431FacACore(config-if)#description link to FacASw
     432FacACore(config-if)#exit
     433}}}
     434 - Follow the same procedure for FacBCore device. VLAN 20 name is dept 2.
     435{{{
     436FacBCore(config)# vlan 20
     437FacBCore(config-vlan)# name Dept2
     438FacBCore(config-vlan)# exit
     439FacBCore(config)#interface vlan 20
     440FacBCore(config-if)# ip address 10.0.20.254 255.255.255.0
     441FacBCore(config-if)# exit
     442FacBCore(config)#interface FastEthernet 1/0
     443FacBCore(config-if)#switchport mode trunk
     444FacBCore(config-if)#switchport trunk encapsulation dot1q
     445FacBCore(config-if)#description link to FacBSw
     446FacBCore(config-if)#exit
     447}}}
     448 - Now the Core devices are done, Let's Configure Layer 2 devices. Login to FacASw
     449 - Go to config mode
     450 - Create Vlan 10 and Give a Name
     451{{{
     452FacASw(config)# vlan 10
     453FacASw(config-vlan)# name Dept1
     454FacASw(config-vlan)# exit
     455}}}
     456 - Next configure fast ethernet interface which connects to the Core device and give a description
     457{{{
     458FacASw(config)#interface FastEthernet 1/15
     459FacASw(config-if)#switchport mode trunk
     460FacASw(config-if)#switchport trunk encapsulation dot1q
     461FacASw(config-if)#description link to FacACore
     462FacASw(config-if)#exit
     463}}}
     464 - Configure fast ethernet interface, which connects to the User PC to an access port of VLAN 10 and give a description
     465{{{
     466FacASw(config-if)#switchport mode access
     467FacASw(config-if)#switchport access vlan 10
     468FacASw(config-if)#description link to Dept1PC
     469FacASw(config-if)#exit
     470}}}
     471 - Follow the same steps for FacBSw
     472{{{
     473FacBSw(config)# vlan 20
     474FacBSw(config-vlan)# name Dept2
     475FacBSw(config-vlan)# exit
     476FacBSw(config)#interface FastEthernet 1/15
     477FacBSw(config-if)#switchport mode trunk
     478FacBSw(config-if)#switchport trunk encapsulation dot1q
     479FacBSw(config-if)#description link to FacBCore
     480FacBSw(config-if)#exit
     481FacBSw(config-if)#switchport mode access
     482FacBSw(config-if)#switchport access vlan 20
     483FacBSw(config-if)#description link to Dept2PC
     484FacBSw(config-if)#exit
     485}}}
     486 - You have configured your distribution layer. Check and verify the connectivity
     487    * Go to Dept1PC and try ping the gateway (VLAN 10 Interface IP of FacACore)
     488{{{
     489ping 10.0.10.254
     490}}}
     491   * You should get a reply
     492   * Try the same in Dept2PC