Minggu, 05 Juni 2011

Tugas Jarkom Praktek : Trunk Port and Inter VLAN Routing

 Trunk Port and Inter VLAN Routing


Objective
· Plan, design, and build a large enterprise network utilizing multiple VLANs, inter-VLAN routing, and VTP domains.
Background / Preparation
A new remote site has been acquired by your company and the network needs to be built. You must plan, design, and build the network to meet company standards. The following equipment has been provided.
· Three Cisco 2960 switches have been purchased, one for each of the three floors
· One Cisco 1841 router has been purchased as the Integrated Service Router (ISR)




Step 1: Connecting the network
Utilize the first FastEthernet interface on the ISR router to connect to the last FastEthernet interface on the Floor 1 switch.
Connect GigabitEthernet 1/1 on the Floor 1 switch to GigabitEthernet 1/1 on the Floor 2 switch.
Connect GigabitEthernet 1/2 on the Floor 2 switch to GigabitEthernet 1/1 on the Floor 3 switch.


Utilize the following table to configure the ISR router, Floor 1, Floor 2, and Floor 3 switches.

KONFIGURASI PADA ISR ROUTER

Router>ena
Router#config t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname ISR_Rtr
ISR_Rtr(config)#enable password cisco123
ISR_Rtr(config)#line vty 0 4
ISR_Rtr(config-line)#password class
ISR_Rtr(config-line)#exit
ISR_Rtr(config)#line console 0
ISR_Rtr(config-line)#password class
ISR_Rtr(config-line)#exit
ISR_Rtr>ena
Password:
ISR_Rtr#config t
Enter configuration commands, one per line. End with CNTL/Z.
ISR_Rtr(config)#interface fa0/0
ISR_Rtr(config-if)#no ip add
ISR_Rtr(config-if)#no shut
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
ISR_Rtr(config-if)#exit
ISR_Rtr(config)#interface fa0/0.20
%LINK-5-CHANGED: Interface FastEthernet0/0.20, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.20, changed state to up
ISR_Rtr(config-subif)#encapsulation dot1Q 20
ISR_Rtr(config-subif)#ip add 192.168.20.1 255.255.255.0
ISR_Rtr(config)#interface fa0/0.25
%LINK-5-CHANGED: Interface FastEthernet0/0.25, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.25, changed state to up
ISR_Rtr(config-subif)#encapsulation dot1Q 25
ISR_Rtr(config-subif)#ip add 192.168.25.1 255.255.255.0
ISR_Rtr(config-subif)#exit
ISR_Rtr(config)#interface fa0/0.30
%LINK-5-CHANGED: Interface FastEthernet0/0.30, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.30, changed state to up
ISR_Rtr(config-subif)#encapsulation dot1Q 30
ISR_Rtr(config-subif)#ip add 192.168.30.1 255.255.255.0
ISR_Rtr(config-subif)#exit

KONFIGURASI PADA SWITCH FLOOR 1

Switch>ena
Switch#config t
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#hostname Floor1_Sw
Floor1_Sw(config)#enable password cisco123
Floor1_Sw(config)#line vty 0 4
Floor1_Sw(config-line)#password class
Floor1_Sw(config-line)#exit
Floor1_Sw(config)#line console 0
Floor1_Sw(config-line)#password class
Floor1_Sw(config-line)#exit
Floor1_Sw(config)#disable
Floor1_Sw>ena
Password:
Floor1_Sw#config t
Enter configuration commands, one per line. End with CNTL/Z.
Floor1_Sw(config)#interface gigabit1/1
Floor1_Sw(config-if)#switchport mode trunk
%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/1, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/1, changed state to up


Floor1_Sw>ena
Password:
Floor1_Sw#config t
Enter configuration commands, one per line. End with CNTL/Z.
Floor1_Sw(config)#vtp domain Sitex
Changing VTP domain name from NULL to Sitex
Floor1_Sw(config)#vtp mode server
Setting device to VTP SERVER mode.
Floor1_Sw(config)#vtp password ciscoVTP
Setting device VLAN database password to ciscoVTP
Floor1_Sw(config)#vlan 20
Floor1_Sw(config-vlan)#name Admin
Floor1_Sw(config-vlan)#exit
Floor1_Sw(config)#vlan 25
Floor1_Sw(config-vlan)#name Management
Floor1_Sw(config-vlan)#exit
Floor1_Sw(config)#vlan 30
Floor1_Sw(config-vlan)#name Finance
Floor1_Sw(config-vlan)#exit
Floor1_Sw(config-if)#exit
Floor1_Sw(config)#int fa0/1
Floor1_Sw(config-if)#switchport mode access
Floor1_Sw(config-if)#switchport access VLAN 20
Floor1_Sw(config-if)#exit

KONFIGURASI PADA SWITCH FLOOR 2

Switch>ena
Switch#config t
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#hostname Floor2_Sw
Floor2_Sw(config-line)#enable password cisco123
Floor2_Sw(config)#line vty 0 4
Floor2_Sw(config-line)#password class
Floor2_Sw(config-line)#line console 0
Floor2_Sw(config-line)#password class
Floor2_Sw(config-line)#exit
Floor2_Sw>ena
Password:
Floor2_Sw#config t
Enter configuration commands, one per line. End with CNTL/Z.
Floor2_Sw(config)#interface gigabit1/2
Floor2_Sw(config-if)#switchport mode trunk
%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/2, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/2, changed state to up
Floor2_Sw(config-if)#exit
Floor2_Sw(config)#interface gigabitEthernet 1/2
Floor2_Sw(config-if)#switchport mode trunk
Floor2_Sw(config-if)#exit
Floor2_Sw>ena
Password:
Floor2_Sw#config t
Enter configuration commands, one per line. End with CNTL/Z.
Floor2_Sw(config)#vtp domain Sitex
Domain name already set to Sitex.
Floor2_Sw(config)#vtp mode client
Setting device to VTP CLIENT mode.
Floor2_Sw(config)#vtp password ciscoVTP
Setting device VLAN database password to ciscoVTP
Floor2_Sw(config)#exit
%SYS-5-CONFIG_I: Configured from console by console
Floor2_Sw>ena
Password:
Floor2_Sw#config t
Enter configuration commands, one per line. End with CNTL/Z.
Floor2_Sw(config)#int fa 0/1
Floor2_Sw(config-if)#switchport mode access
Floor2_Sw(config-if)#switchport access vlan 25
Floor2_Sw(config-if)#exit

KONFIGURASI PADA SWITCH FLOOR 3

Switch>ena
Switch#config t
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#hostname Floor3_Sw
Floor3_Sw(config)#enable password cisco123
Floor3_Sw(config)#line vty 0 4
Floor3_Sw(config-line)#password class
Floor3_Sw(config-line)#exit
Floor3_Sw(config)#line console 0
Floor3_Sw(config-line)#password class
Floor3_Sw(config-line)#exit
Floor3_Sw>ena
Password:
Floor3_Sw#config t
Enter configuration commands, one per line. End with CNTL/Z.
Floor3_Sw(config)#interface gigabitEthernet 1/1
Floor3_Sw(config-if)#switchport mode trunk
Floor3_Sw(config-if)#exit
Floor3_Sw>ena
Password:
Floor3_Sw#config t
Enter configuration commands, one per line. End with CNTL/Z.
Floor3_Sw(config)#vtp domain Sitex
Changing VTP domain name from NULL to Sitex
Floor3_Sw(config)#vtp mode client
Setting device to VTP CLIENT mode.
Floor3_Sw(config)#vtp password ciscoVTP
Setting device VLAN database password to ciscoVTP
Floor3_Sw(config)#exit
Floor3_Sw>ena
Password:
Floor3_Sw#config t
Enter configuration commands, one per line. End with CNTL/Z.
Floor3_Sw(config)#int fa 0/1
Floor3_Sw(config-if)#switchport mode access
Floor3_Sw(config-if)#switchport access vlan 30
Floor3_Sw(config-if)#exit

Tidak ada komentar:

Posting Komentar