Konfigurasi dasar pada switch Catalyst Cisco
Bagi yang baru belajar mengenai konfigurasi perangkat switch cisco, ada beberapa hal yang perlu kita setup pada perangkat switch yang baru, yaitu:
1. nama host
2. password utk masuk ke privileged mode, console & telnet
3. session timeout utk line console & telnet
4. IP address, subnet mask & default-gateway switch
5. zona waktu (dalam contoh ini WIB) & setup waktu sekarang
Topologinya:
berikut adalah beberapa command-command di Cisco IOS (Internetwork Operating System) yang digunakan untuk konfigurasi dasar:
> enable
# configure terminal
(config)# hostname Switch-Adit
(config)# enable secret cisco
(config)# line console 0
(config-line)# password latihan
(config-line)# login
(config-line)# exec-timeout 10 0
(config-line)# logging synchronous
(config-line)# line vty 0 4
(config-line)# password rahasia
(config-line)# login
(config-line)# exec-timeout 10 0
(config-line)# logging synchronous
(config-line)# interface vlan 1
(config-if)# ip address 10.1.1.10 255.255.255.0
(config-if)# no shutdown
(config-if)# exit
(config)# ip default-gateway 10.1.1.1
(config)# clock timezone WIB 7
(config)# end
# clock set 15:07:00 19 nov 2009
# copy run start

