Intervlan switch catalyst 3550 , etherchannel ,dan etherchannel routing

Posted on February 25, 2009. Filed under: Sinau Cisco |

Masih penasaran dengan catalyish 3550 masalah intervlannya. Ternyata catalyst 3550 sudah bisa berjalan dilayer 3. untuk intervlan dia tidak membutuhkan router lagi bahkan dia juga sudah bisa untuk meroutingkan ip.

Disini saya hanya menggunakan 1 catalysh 3550 dan 2 pc saja.

Topologi
Image Hosting

Di pc0 ip 10.10.10.1 /24 gw 10.10.10.254
pc1 ip 10.10.20.1 /24 gw 10.10.20.254

pada catalysh 3550
switch>en
switch#conf t
switch(config)#ip routing
switch(config)#int vlan 10
switch(config-if)#ip add 10.10.10.254 255.255.255.0
switch(config-if)#no sh
switch(config)#int vlan 20
switch(config-if)#ip add 10.10.20.254 255.255.255.0
switch(config)#int fa0/1
switch(config-if)#switchport mode access
switch(config-if)#switchport access vlan 10
switch(config-if)#no sh
switch(config)#int fa0/2
switch(config-if)#switchport mode access
switch(config-if)#switchport access vlan 20
switch(config-if)#no sh

selesai dah

ping dari pc ke pc

sh vlan brief switch
Image Hosting

sh run switch
Switch#sh run
Building configuration…

Current configuration : 1215 bytes
!
version 12.2
no service password-encryption
!
hostname Switch
!
!
ip routing
!
!
!
!
ip ssh version 1
!
port-channel load-balance src-mac
!
interface FastEthernet0/1
switchport access vlan 10
switchport mode access
!
interface FastEthernet0/2
switchport access vlan 20
switchport mode access

!
interface Vlan10
ip address 10.10.10.254 255.255.255.0
!
interface Vlan20
ip address 10.10.20.254 255.255.255.0
!
!
end

lanjut…..

Nah sekarang saya akan mencoba Etherchanel. Apa sih Ehterchannel itu.
Etherchannel adalah suatu teknologi trunking yang digunakan oleh switch Cisco catalyst dimana sejumlah fisikal port pada device digabung menjadi satu jalur logika dalam satu buah port group. Fungsinya untuk meningkatkan kecepatan koneksi antar switch, router ataupun server dan jika salah satu port/jalur rusak maka port group akan tetap bekerja menggunakan jalur/port lain. (source Dedi Gunawan)

Weh keren ya……
disini saya akan mengunakan 3 switch catalyst 3550
nie gambar topologynya
Image Hosting

saya mencoba memasang 6 cable dari sw1 ke sw2
di sw1 ada 6 loopback
lo1 2.2.2.1 /32
lo2 2.2.2.2 /32
lo3 2.2.2.3 /32
lo4 2.2.2.4 /32
lo5 2.2.2.5 /32
lo6 2.2.2.6 32

di sw1 pada port fa0/1 dan fa0/1 saya akan mengeset etherchannel layer2 pagp mode desirable

sw1(config-if)#int range fa0/1 – 2
sw1(config-if-range)#switchport mode trunk
sw1(config-if-range)#channel-group 1 mode desirable

dan pada sw 2 pada port fa0/1 – 2 saya akan mangeset ethercannel layer 2 pagp mode auto

SW2(config)#int range fa0/1 – 2
SW2(config-if-range)#switchport mode trunk
SW2(config-if-range)#channel-group 1 mode auto

pada pagp mode yang digunakan antar switch adalah
auto – desirable

desirable – auto

desirable – desirable

lalu pada switch 1 port fa0/3-fa0/4 saya akan mengeset etherchannel layer 2 lacp

sw1(config-if)#int range fa0/3 – 4
sw1(config-if-range)#switchport mode trunk
sw1(config-if-range)#channel-group 2 mode active

pada switch 2 port fa0/3-fa0/4 set etherchannel layer 2 lacp

sw2(config-if)#int range fa0/3 – 4
sw2(config-if-range)#switchport mode trunk
sw2(config-if-range)#channel-group 2 mode active
pada lacp mode yang digunakan adalah

active – active

active – passive

pada switch 1 port fa0/5-fa0/6 akan diset etherchannel layer 3 dengan ip 1.1.1.1 /24

sw1(config-if)#int range fa0/5-6
sw1(config-if-range)#channel-group 3 mode on
sw1(config)#int port-channel 3
sw1(config-if)#ip add 1.1.1.1 255.255.255.0
sw1(config-if)# no sh

pada switch 2 port fa0/5 -6 diset etherchannel layer 3 dengan ip 1.1.1.2 /24

sw1(config-if)#int range fa0/5-6
sw1(config-if-range)#channel-group 3 mode on
sw1(config)#int port-channel 3
sw1(config-if)#ip add 1.1.1.2 255.255.255.0
sw1(config-if)# no sh

nah sekarang saya akan memasang routing protokol eigrp 10 pada tiap-tiap switch

pada switch 1
switch(config)#router eigrp 10
switch(config-router)#net 1.1.1.1 0.0.0.0
switch(config-router)#net 2.2.2.1 0.0.0.0
switch(config-router)#net 2.2.2.2 0.0.0.0
switch(config-router)#net 2.2.2.3 0.0.0.0
switch(config-router)#net 2.2.2.4 0.0.0.0
switch(config-router)#net 2.2.2.5 0.0.0.0
switch(config-router)#net 2.2.2.6 0.0.0.0
switch(config-router)#no auto-sum

pada switch 2
switch(config)#router eigrp 10
switch(config-router)#net 1.1.1.1 0.0.0.0
switch(config-router)#no auto-sum

nah sekarang kita coba ngeping antar switch
swicth 1 ke switch 2
Image Hosting

switch 2 ke switch 1
Image Hosting

sh etherchannel summary sw1
Image Hosting

sh etherchannel summary sw2
Image Hosting

lalu saya menambahkan 1 switch catalist 3550 lagi topologi seperti gabar diatas.
disini saya mengunakan layer 3 switch tanpa etherchannel.
pada switch 3
switch>en
switch#conf t
switch(config)#int fa0/1
switch(config-if)#no switchport
switch(config-if)#ip add 2.2.2.8 255.255.255.0
switch(config-if)#no sh
switch(config)#router eigrp 10
switch(config-router)#net 2.2.2.8 0.0.0.0
switch(config-router)#no auto-sum

pada switch 2 ditambahkan konfigurasi seperti ini
switch(config)#int fa0/7
switch(config-if)#no switchport
switch(config-if)#ip add 2.2.2.7 255.255.255.0
switch(config-if)#no sh
switch(config)#router eigrp 10
switch(config-router)#net 2.2.2.7 0.0.0.0

selesai dah
ping switch 3 ke sw1
Image Hosting

Make a Comment

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

4 Responses to “Intervlan switch catalyst 3550 , etherchannel ,dan etherchannel routing”

RSS Feed for In The World Without Limitation Comments RSS Feed

[...] konfigurasi awal pada switch dapat dilihat disini [...]

[...] saya mencobanya dikonfigurasi yang saya lakukan kemarin dapat dilihat di sini [...]

saya mencoba membuat link sebesar 200Mbps, sudah coba langkah2 nya tapi pakai cat 2950 tapi kenapa hasil sh etherchannel summary nya spt ini ya..

Fa0/19(P) Fa0/20(Pd)<=== jadi ada status default port nya dan ketika saya flood hanya ada traffic pada satu port saja tidak terbagi rata di ke dua port tsb sehingga mentok di 100Mbps traffic nya.

Mohon pencerahan

Terima kasih

wah harusnya bisa bro.


Where's The Comment Form?

Liked it here?
Why not try sites on the blogroll...

Follow

Get every new post delivered to your Inbox.