Minggu, 24 Februari 2008

tanggal 28

pusing hari ini tapi tanggal 29 di ajak nonton ma ce......
asik!!!semoga dah gak pusing lagiiii...
tapi tetep dunk aku yang bayari coz co haris bayari ce.........
masa ce yang bayarin waduh2x malu2xin aja........
hehehee.... Lanjut..

membuat/setting VLAN di SWITCH CISCO

artikel ini untuk pembelajaran saja....:

ini ada berberapa membuat VLAN di switch cisco :

================ CONFIGURE SWITCH ==================


1. Login to Core-Switch (via console)
a. Create VLAN
Switch#vlan database
Switch(vlan)# vlan name
VLAN added:
Name:
Switch(vlan)#exit
APPLY completed.
Exiting....

b. Create VLAN interface
Switch#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#interface Vlan
Switch(config-if)#ip address A.B.C.D
Switch(config-if)#description
Switch(config-if)#no shutdown
Switch(config-if)#end
Switch#write memory
Building configuration...
[OK]

2. Login to Switch-Distribution (via console/Core-Switch)
a. Create VLAN
Switch#vlan database
Switch(vlan)# vlan name
VLAN added:
Name:
Switch(vlan)#exit
APPLY completed.
Exiting....

b.Assign a port to a VLAN in the VLAN database
Switch# configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)# interface fastethernet0/1
Switch(config-if)# description
Switch(config-if)# switchport mode access
Switch(config-if)# switchport access vlan
Switch(config-if)# bandwidth 100000
Switch(config-if)# speed
Switch(config-if)# no shutdown
Switch(config-if)# end
Switch#write memory
Building configuration...
[OK]

================== VIEW KONEKSI =====================
melihat daftar vlan --> sh vlan
melihat status vlan --> sh vlan id
melihat properties int --> sh int
melihat status int --> sh int status
melihat configurasi sw --> sh run
melihat conf interface --> sh run int
melihat conf int vlan --> sh run int vlan
Lanjut..