Changes between Version 14 and Version 15 of Cnbp2019/Agenda/NetworkSetup


Ignore:
Timestamp:
Feb 26, 2019, 8:28:01 AM (5 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Cnbp2019/Agenda/NetworkSetup

    v14 v15  
    2626||      F1/0    ||      Trunk   ||      10, 20  ||      2       ||
    2727||      F1/1    ||      Trunk   ||      20, 30  ||      2       ||
    28 ||      F1/15   ||      Access  ||      1       ||      -       ||
     28||      F1/15   ||      Access  ||      5       ||      -       ||
    2929                                                               
    3030----                                                           
     
    352352
    353353
    354 == Assign Interfaces to VLANs ==
    355 
     354== Assign Interfaces  ==
     355
     356On L3 devices we can have three types of links,
     357* L3 routed ports
     358* Trunk ports
     359* L2 Access Ports
     360
     361We have already configured routed ports and now we need to assign ports to our VLAN's created above.
     362
     363* Create Trunk Ports,
     364   * First make the interface a trunk port. This is for the link between FAC1 and Building 1
     365{{{
     366FAC1(config)#interface FastEthernet 1/0
     367FAC1(config-if)#switchport mode trunk
     368}}}
     369   * Define the encapsulation
     370{{{
     371FAC1(config-if)#switchport trunk encapsulation dot1q
     372}}}
     373   * Give the Description of the interface
     374{{{
     375FAC1(config-if)#description link to Building 1
     376FAC1(config-if)#exit
     377}}}
     378   * Allow the VLAN's that we only need.
     379{{{
     380
     381}}}
     382   * Change the Native VLAN
     383{{{
     384
     385}}}
     386
     387Do the same for the other trunk link
     388
     389{{{
     390FAC1(config)#interface FastEthernet 1/1
     391FAC1(config-if)#switchport mode trunk
     392FAC1(config-if)#switchport trunk encapsulation dot1q
     393FAC1(config-if)#description link to Building 2
     394FAC1(config-if)#
     395FAC1(config-if)#
     396FAC1(config-if)#exit
     397}}}
     398* Create Access ports.
     399   * Assign interface to be in Access Mode
     400{{{
     401FAC1(config)#interface FastEthernet 1/15
     402FAC1(config-if)#switchport mode access
     403}}}
     404   * Assign the VLAN
     405{{{
     406FAC1(config-if)#switchport access vlan 20
     407}}}
     408   * Assign a suitable description
     409{{{
     410FAC1(config-if)#description link to Monitoring Server
     411FAC1(config-if)#exit
     412}}}
    356413
    357414