Monday, May 13, 2013

Basic Router Configuration

Mata Kuliah Jaringan Komputer [JTE Univ.Mataram]


Tool simulasi yang akan digunakan adalah Packet tracert, beberapa konfigurasi dasar yang akan dilakukan disini adalah :
  • Naming the router 
  • Setting passwords 
  • Configuring interfaces 
  • Configuring a banner 
  • Saving changes on a router 
  • Verifying basic configuration and router operations
Download file berikut untuk melakukan konigurasi : .pka
berikut adalah perintah-perintah yang digunakan untuk mengkonfigurasi : TXT

--------------
    R1
---------------
Router>enable
Router#conf
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line.  End with CNTL/Z.

Router(config)#hostname R1

R1(config)#interface fastEthernet 0/0
R1(config-if)#ip address 192.168.1.1 255.255.255.0
R1(config-if)#no shutdown

R1(config)#interface serial 0/0/0
R1(config-if)#ip address 192.168.2.1 255.255.255.0
R1(config-if)#no shutdown

##password console,telnet,enable secret
R1(config)#line console 0
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#exit

R1(config)#line vty 0 4
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#exit

R1(config)#enable secret class

R1(config)#banner motd #
Enter TEXT message.  End with the character '#'.
***************************************************
warning !! Unauthorized Acces Prohibited!!
***************************************************
#

R1#copy running-config startup-config

No comments :

Post a Comment