1. MEMBERIKAN NAMA PERANGKAT / HOSTNAME
dengan memasukan perintah:
switch>enable
switch#configure terminal
switch(config)#hostname (nama yang diinginkan)
switch(config)#hostname SAIPUL-33
SAIPUL-33(config)#
2. MENGAMANKAN ASKES PERANGKAT
dengan memasukan perintah:
SAIPUL-33(config)#enable secret (masukan password)
SAIPUL-33(config)#enable secret bebas
SAIPUL-33(config)#line console 0
SAIPUL-33(config-line)#password (masukan password)
SAIPUL-33(config-line)#password bebas
SAIPUL-33(config-line)#login
SAIPUL-33(config-line)#exit
SAIPUL-33(config)#line vty 0 15
SAIPUL-33(config-line)#password (masukan password)
SAIPUL-33(config-line)#password bebas
SAIPUL-33(config-line)#login
SAIPUL-33(config-line)#exit
dan juga mengenkripsikan tampilan password
dengan perintah:
SAIPUL-33(config)#service password-encryption
SAIPUL-33(config)#exit
SAIPUL-33(config)#show running-config
3. MEMBERIKAN BANNER
Sering digunakan untuk pemberitahuan hukum karena ditampilkan ke semua terminal yang terhubung
dengan memasukan perintah:
SAIPUL-33(config)#banner motd # This is a secure system. Authorized access only! #
4. MENYIMPAN KONFIGURASI
SAIPUL-33#copy running-config startup-config
destination filename [startup-config]?
Building configuration...
[OK]
5. KONFIGURASI IP ADDRESS
SAIPUL-33#configure terminal
SAIPUL-33(config)#interface VLAN 1
SAIPUL-33(config-if)#ip address 192.168.1.123 255.255.255.0
SAIPUL-33(config-if)#no shutdown
Tampilan sesudah di konfigurasi
Comments