Sekarang saya akan share tentang cara konfigurasi router juniper menggunakan mode CLI dengan settingan dasar di junos.
Untuk mensetting router JUNIPER kita bisa menggunakan mode CLI ( command-line interface) atau dengan Web Browser.
Tapi disini saya mencoba posting yang menggunakan cara CLI :
- Kita masuk lewat hyper Terminal Windows :
Port setting Bit Per second =9600
Data Bits=8
Parity=None
Stop bits=1
Flow control=None
- Root%
- Root%cli
- Root>configure ( untuk memasuki configuration mode)
- Root#
Setting Host Name
- Root#set system host-name COBA
- Root@COBA#set system service telnet
Membuat Account User
- Root@COBA#set system login user COBA class super-user authentication plain-text-password
New password: (isikan password)
Retype new password: (isikan password yg sama
Setting Interface
- Root@COBA#set interfaces so-0/0/0 unit 0 family inet address 192.168.10.1/24
Penulisan Description
- Root@COBA#set interfaces so-0/0/0 description “To LAN"
- Root@COBA#set interfaces so-0/0/1 unit 0 family inet address 172.16.1.2/30
- Root@COBA#set interfaces so-0/0/0 description “To WAN"
Setting Routing
- Root@COBA#set routing-options static route 0.0.0.0/0 next-hop next-hop 172.16.1.1
Setting DNS
- Root@COBA#set system Name-server 202.134.100.23
Save Configuration
- Root@COBA#commit
Semoga bermanfaat.