Showing posts with label Cisco. Show all posts
Showing posts with label Cisco. Show all posts

Sunday, 28 June 2015

Konsep IP SLA (Bagian 1)

IP SLA adalah pengecekan status obyek dalam periode waktu tanpa batas atau terbatas. Paling sering digunakan adalah dengan melakukan ping ke alamat tujuan untuk pengecekan status updown nya. atau untuk mengukur kualitas parameter seperti jitter, latency, round trip time (RTT) dan lainnya. IP SLA mengirimnya "robots" berkali-kali dan membuat statistik yang akurat. Bisa digunakan juga sebagai bagian design yang lebih rumit, contoh : Tracking default gateway, dynamic failover pada routing statik atau rerouting traffic, saat parameter jaringan yang dipantau menjadi buruk. sebagai contoh, bila RTT meningkat melebihi batas yang ditentukan, maka traffic suara dapat di reroute melewati jalur backup.

Mari kita telusuri lebih dalam tentang konfigurasi dasar IP SLA pada artikel Konsep IP SLA (Bagian 1) ini.

IP SLA bekerja dengan waktu operasi. IOS dengan vesi lama menyebutnya RTR (Response Time Reporter), yang pada dasarnya sama. RTR menyebut robot sebagai probes. Saya akan menggunakan istilah probe, saat menunjukkan paket IP SLA. Operasi dari IP SLA sangat mudah. Kita bisa mengirim spesifik probe ke tujuan dan tujuan membalasnya. IP SLA responder harus di enable/aktifkan.

Langkah Konfigurasi

Ada dua versi yang berbeda pada IP SLA. yang satu memasukkan katakunci "monitor" dan dapat di anggap sebagai implementasi versi lama dan memiliki sedikit opsi untuk di pilih. Langkah konfigurasi sangat mudah 

  1. Pilih nomor unik IP SLA.
  2. Definiskan tipe probe dan opsinya.
  3. Menjadwalkan probe, kapan untuk mulai dan berapa lama di monitor.
  4. Tetapkan IP SLA opsional sebagai bagian dari obyek dan dapat melakukan tracking obyek.
Keuntungan dari IP SLA adalah dapat mengirim statistik ke remote server. Jika kita memiliki multiple device atau link, yang kita ingin monitor, kita dapat mengumpulkan hasil dari IP SLA kedalam grafik di monitoring centre. Engineer di monitoring centre dapat mengambil tindakan, jika statistik menjadi buruk atau kita dapat mengkonfigurasi dynamic automatic action di router.

Contoh :

Berikut adalah diagram sederhana

Berikut adalah konfigurasi IP SLA probe :


R1(config)#ip sla 1 
R1(config-ip-sla)#? 
IP SLAs entry configuration commands:
  dhcp         DHCP Operation
  dns          DNS Query Operation
  ethernet     Ethernet Operations
  exit         Exit Operation Configuration
  frame-relay  Frame-relay Operation
  ftp          FTP Operation
  http         HTTP Operation
  icmp-echo    ICMP Echo Operation
  icmp-jitter  ICMP Jitter Operation
  mpls         MPLS Operation
  path-echo    Path Discovered ICMP Echo Operation
  path-jitter  Path Discovered ICMP Jitter Operation
  tcp-connect  TCP Connect Operation
  udp-echo     UDP Echo Operation
  udp-jitter   UDP Jitter Operation
  voip         Voice Over IP Operation

R1(config-ip-sla)#icmp-echo ?
  Hostname or A.B.C.D  Destination IP address or hostname, broadcast disallowed

R1(config-ip-sla)#icmp-echo 192.168.12.2 ?    
  source-interface  Source Interface (ingress icmp packet interface)
  source-ip         Source Address

R1(config-ip-sla)#icmp-echo 192.168.12.2       
R1(config-ip-sla-echo)#?
IP SLAs echo Configuration Commands:
  default            Set a command to its defaults
  exit               Exit operation configuration
  frequency          Frequency of an operation
  history            History and Distribution Data
  no                 Negate a command or set its defaults
  owner              Owner of Entry
  request-data-size  Request data size
  tag                User defined tag
  threshold          Operation threshold in milliseconds
  timeout            Timeout of an operation
  tos                Type Of Service
  verify-data        Verify data
  vrf                Configure IP SLAs for a VPN Routing/Forwarding instance

R1(config-ip-sla-echo)#frequency ?
  <1-604800>  Frequency in seconds (default 60)

R1(config-ip-sla-echo)#frequency 1
%Illegal Value:  Cannot set Frequency to be less than Timeout

R1(config-ip-sla-echo)#timeout ?
  <0-604800000>  Timeout in milliseconds

R1(config-ip-sla-echo)#timeout 250
%Error: timeout value is less than threshold 5000

R1(config-ip-sla-echo)#threshold 250
R1(config-ip-sla-echo)#timeout 250  
R1(config-ip-sla-echo)#frequency 1
R1(config-ip-sla-echo)#exit
R1(config)#ip sla schedule ?
  <1-2147483647>  Entry number

R1(config)#ip sla schedule 1 ?
  ageout      How long to keep this Entry when inactive
  life        Length of time to execute in seconds
  recurring   Probe to be scheduled automatically every day
  start-time  When to start this entry

R1(config)#ip sla schedule 1 life forever ?
  ageout      How long to keep this Entry when inactive
  recurring   Probe to be scheduled automatically every day
  start-time  When to start this entry

R1(config)#ip sla schedule 1 life forever start-time now

Pertama, Saya memiliki konfigurasi tipe probe. ICMP echo yang dipilih. Saya menspesifikkan hanya pada tujuan (alamat IP). Saya ingin mengirim probe setiap detik (berkali-kali). Karena itu, saya butuh mengecilkan maximum waiting response time (timeout). Saya akan setting di 250 ms. Karena itu, saya butu mengecilkan batasannya, yang mana nilai RTT maximum yang dibolehkan untuk probe dalam ICMP tipe echo. Ini harus di konfigurasi dengan perintah yang benar sesuai konfigurasi di atas. Sehingga probe terkirim seiap detik dan maximum RTT adalah 250 ms. Probe dimulai dari sekarang dan selamanya. 

Berikut adalah beberapa output sederhana :

R1#sh ip sla statistics
IPSLAs Latest Operation Statistics

IPSLA operation id: 1
Type of operation: icmp-echo
        Latest RTT: 4 milliseconds
Latest operation start time: *11:35:58.923 UTC Sat Aug 11 2012
Latest operation return code: OK
Number of successes: 4
Number of failures: 63
Operation time to live: Forever

R1#sh ip sla statistics ?
  <1-2147483647>  Entry Number
  aggregated      IP SLAs Statistics Aggregated
  details         Detailed Output
  |               Output modifiers

R1#sh ip sla statistics details 
IPSLAs Latest Operation Statistics

IPSLA operation id: 1
Type of operation: icmp-echo
        Latest RTT: 4 milliseconds
Latest operation start time: *11:36:02.923 UTC Sat Aug 11 2012
Latest operation return code: OK
Over thresholds occurred: FALSE
Number of successes: 8
Number of failures: 63
Operation time to live: Forever
Operational state of entry: Active
Last time this entry was reset: Never
 
Berikut adalah konfigurasi di router untuk uji coba di lab

R1 :
interface Serial1/0
 ip address 192.168.12.1 255.255.255.0
!
ip route 2.2.2.2 255.255.255.255 Serial1/0
!
ip sla 1
 icmp-echo 192.168.12.2
 timeout 250
 threshold 250
 frequency 1
ip sla schedule 1 life forever start-time now
 

R2 :
interface Loopback0
 ip address 2.2.2.2 255.255.255.255
interface Serial1/0
 ip address 192.168.12.2 255.255.255.0
 

Thursday, 2 April 2015

Setting Router Cisco untuk koneksi ke PC / Configure Cisco Router for PC Connections

Bahasa

Setting Router untuk koneksi ke PC


Pada artikel ini, saya menggunakan packet tracer v5 untuk simulasi Cisco,
Tahap awal melakukan konfigurasi router dengan kabel console akan kita bahas di artikel lain,
Pastikan anda sudah membuat topology sesuai gambar di bawah ini :

Klik dua kali pada icon router dan pilih menu CLI :
Pilih no agar anda bisa melakukan setting secara manual,
Pertama, masuk ke exec mode

cisco>enable
cisco#

Lalu masuk ke global configuration mode

cisco#config t
cisco(config)#

Biasanya hal pertama yang dilakukan adalah menambahkan password untuk masuk ke exec mode


cisco(config)#enable secret (password)

Masuk ke interface yang terkoneksi dengan PC dalam topology ini saya koneksikan ke interface fa0/1

cisco(config)#int fa0/1
cisco(config-if)#

Berikan nama pada interface agar mempermudah kita untuk troubleshooting


cisco(config-if)# desc Link to PC

definisikan IP yang akan di pasang di interface tersebut

cisco(config-if)# ip add 192.168.1.1

bila perlu, setting bandwidth-nya juga

cisco(config-if)# bandwidth 512

hidupkan interface

cisco(config-if)# no shut

pada tahap ini, kita sudah selesai dengan konfigurasi di sisi router, sekarang kita akan setting di sisi PC,
klik dua kali pada icon PC pilih desktop dan klik IP Configuration dan akan muncul menu dibawah ini :
pilih static dan masukkan IP 192.168.1.2 dengan subnetmask 255.255.255.0 dan default gateway 192.168.1.1 dan tutup jendela IP Configuration dan pilih command prompt lalu keting ping 192.168.1.1 atau IP router, maka akan muncul pesan reply yang menandakan anda berhasil,
bila tidak bisa maka silahkan di ulangi langkah demi langkah pelan-pelan dari awal atau silahkan lihat di video dibawah ini :



***********************************************************************************

English

Configure Cisco Router for PC Connections


In this article, I use packet tracer v5 for Cisco simulations,
First step, we will configure router using console cable which we will discuss in another article,
Make sure you make the same topology like the picture below :

Double click on router icon and select CLI menu :
type no for configure router manually,
first, change to exec mode

cisco>enable
cisco#

the change to global configuration mode

cisco#config t
cisco(config)#

Usually the first thing we will do was set the password for exec mode


cisco(config)#enable secret (password)

Go to interface setting which connected to PC, in this time we connect the PC to interface fa0/1

cisco(config)#int fa0/1
cisco(config-if)#

Give the name or description on the interface to make us easy for troubleshooting

cisco(config-if)# desc Link to PC

define IP which we will attach on this interface

cisco(config-if)# ip add 192.168.1.1

if needed, set the bandwidth too

cisco(config-if)# bandwidth 512

turn on the interface

cisco(config-if)# no shut

in this step, we already configure the router side, now we go to PC side,
double click on PC icon and select desktop and klik IP Configuration menu, it will show window linke the picture below :
choose static and give IP 192.168.1.2 with subnetmask 255.255.255.0 and default gateway 192.168.1.1 then close the window IP Configuration and choose command prompt then type ping 192.168.1.1 or router IP, it will show reply message that give us success sign,
if you failed, please do the step from the start slowly or you can watch in below video :

Thursday, 11 October 2012

Cara Membuat VLAN Pada Cisco / How to make Vlan on Cisco

Bahasa

Cara Membuat VLAN Pada Cisco

VLAN disebut juga virtual LAN, pada tutorial kali ini akan dijelaskan bagaiman membuat VLAN pada CISCO.
disini saya memakai simulasi CISCO yaitu Packet Tracer V5, sedangkan definisi VLAN adalah sekelompok
host dengan suatu set umum persyaratan yang berkomunikasi seolah-olah mereka terikat pada domain
broadcast yang sama, terlepas dari lokasi fisik mereka.
Kita akan membuat 3 vlan yaitu :
1. vlan 10 dosen
2. vlan 20 mahasiswa
3. vlan 30 karyawan

Definisikan ip address gateway di router dengan membuat interface virtual :

Untuk Gateway VLAN 10
Router>enable
Router#configure terminal
Router(config)#interface fa0/0.10
Router(config-subif)#encapsulation dot1Q 10
Router(config-subif)#ip address 192.168.10.254 255.255.255.0
Router(config-if)#exit
Router(config)#exit

Untuk Gateway VLAN 20
Router>enable
Router#configure terminal
Router(config)#interface fa0/0.20
Router(config-subif)#encapsulation dot1Q 20
Router(config-subif)#ip address 192.168.20.254 255.255.255.0
Router(config-if)#exit
Router(config)#exit

Untuk Gateway VLAN 30
Router>enable
Router#configure terminal
Router(config)#interface fa0/0.30
Router(config-subif)#encapsulation dot1Q 30
Router(config-subif)#ip address 192.168.30.254 255.255.255.0
Router(config-if)#exit
Router(config)#exit

Lalu kita setting switchnya, langkah-langkahnya sebagai berikut :
Definisikan Vlan :
Switch#vlan database
Switch(vlan)#vlan 10 name Dosen
Switch(vlan)#vlan 20 name Mahasiswa
Switch(vlan)#vlan 30 name Karyawan

Delegasikan port untuk mengakses tiap-tiap Vlan yang sudah didefinisikan :
Switch>enable
Switch#configure terminal
Switch(config)#interface fa0/1 -> Menuju router
Switch(config-if)#switchport mode trunk
Switch(config-if)#exit
Switch(config)#interface fa0/2 -> Menuju PC Dosen
Switch(config-if)#switchport access vlan 10
Switch(config-if)#exit
Switch(config)#interface fa0/3 -> Menuju PC Mahasiswa
Switch(config-if)#switchport access vlan 20
Switch(config-if)#exit
Switch(config)#interface fa0/4 -> Menuju PC Karyawan
Switch(config-if)#switchport access vlan 30
Switch(config-if)#exit
Verifikasi vlan :
Switch#show vlan
VLAN Name Status Ports
---- -------------------------------- --------- -------------------------------
1 default active Fa0/5, Fa0/6, Fa0/7, Fa0/8
Fa0/9, Fa0/10, Fa0/11, Fa0/12
Fa0/13, Fa0/14, Fa0/15, Fa0/16
Fa0/17, Fa0/18, Fa0/19, Fa0/20
Fa0/21, Fa0/22, Fa0/23, Fa0/24
10 dosen active Fa0/2
20 mahasiswa active Fa0/3
30 karyawan active Fa0/4


*********************************************************************************

English

How to make Vlan on Cisco

VLAN is also called virtual LANs, in this tutorial will explain how create a VLAN on CISCO.
Here I use simulator CISCO Packet Tracer V5, while the definition of a VLAN is a group of hosts with a common set of requirements that communicate as if they were bound to the domain
broadcast equally, regardless of their physical location.
We will make 3 vlan :
1. vlan 10 lecturer
2. vlan 20 student
3. vlan 30 employee

Define ip address gateway on router and create virtual interface :

for Gateway VLAN 10
Router>enable
Router#configure terminal
Router(config)#interface fa0/0.10
Router(config-subif)#encapsulation dot1Q 10
Router(config-subif)#ip address 192.168.10.254 255.255.255.0
Router(config-if)#exit
Router(config)#exit

for Gateway VLAN 20
Router>enable
Router#configure terminal
Router(config)#interface fa0/0.20
Router(config-subif)#encapsulation dot1Q 20
Router(config-subif)#ip address 192.168.20.254 255.255.255.0
Router(config-if)#exit
Router(config)#exit

for Gateway VLAN 30
Router>enable
Router#configure terminal
Router(config)#interface fa0/0.30
Router(config-subif)#encapsulation dot1Q 30
Router(config-subif)#ip address 192.168.30.254 255.255.255.0
Router(config-if)#exit
Router(config)#exit

Then we will configure the switch, here step by step :
Definie Vlan :
Switch#vlan database
Switch(vlan)#vlan 10 name Lecturer
Switch(vlan)#vlan 20 name Student
Switch(vlan)#vlan 30 name Employee

Delegate the port for each Vlan which we define before :
Switch>enable
Switch#configure terminal
Switch(config)#interface fa0/1 -> to router
Switch(config-if)#switchport mode trunk
Switch(config-if)#exit
Switch(config)#interface fa0/2 -> to Lecturer PC
Switch(config-if)#switchport access vlan 10
Switch(config-if)#exit
Switch(config)#interface fa0/3 -> to Student PC
Switch(config-if)#switchport access vlan 20
Switch(config-if)#exit
Switch(config)#interface fa0/4 -> to Employee PC
Switch(config-if)#switchport access vlan 30
Switch(config-if)#exit
Verify vlan :
Switch#show vlan
VLAN Name Status Ports
---- -------------------------------- --------- -------------------------------
1 default active Fa0/5, Fa0/6, Fa0/7, Fa0/8
Fa0/9, Fa0/10, Fa0/11, Fa0/12
Fa0/13, Fa0/14, Fa0/15, Fa0/16
Fa0/17, Fa0/18, Fa0/19, Fa0/20
Fa0/21, Fa0/22, Fa0/23, Fa0/24
10 lecturer active Fa0/2
20 student active Fa0/3
30 employee active Fa0/4

Routing RIP (Routing Information Protocol)

Bahasa

Routing RIP (Routing Information Protocol)

RIP adalah protokol routing dinamik yang berbasis distance vector. RIP menggunakan protokol UDP
pada port 520 untuk mengirimkan informasi routing antar router. RIP menghitung routing terbaik
berdasarkan perhitungan HOP. RIP membutuhkan waktu untuk melakukan converge. RIP
membutuhkan power CPU yang rendah dan memory yang kecil daripada protokol yang lainnya.
Merupakan protocol routing yang digunakan secara luas di Internet.
Memanfaatkan broadcast address untuk distribusi informasi routing.
Menentukan rute terbaik dengan “hop count” terkecil.
Update routing dilakukan secara terus menerus.

Karakteristik RIP
Menggunakan algoritma distance-vector (Bellman Ford).
Dapat menyebabkan routing loop.
Diameter jaringan terbatas.
Lambat mengetahui perubahan jaringan.
Menggunakan metrik tunggal.

Keterbatasan RIP
Metric : Hop Count
RIP menghitung routing terbaik berdasarkan hop count dimana belum tentu hop count yang rendah menggunakan protokol LAN yang bagus, dan bisa saja RIP memilih jalur jaringan yang lambat.
Hop Count Limit
RIP tidak dapat mengatur hop lebih dari 15. hal ini digunakan untuk mencegah loop pada
jaringan.
Classful Routing Only
RIP menggunakan classful routing ( /8, /16, /24 ). RIP tidak dapat mengatur classless routing.

Cara Kerja RIP
Host mendengar pada alamat broadcast jika ada update routing dari gateway.
Host akan memeriksa terlebih dahulu routing table lokal jika menerima update routing . Jika
rute belum ada, informasi segera dimasukkan ke routing table .
Jika rute sudah ada, metric yang terkecil akan diambil sebagai acuan.
Rute melalui suatu gateway akan dihapus jika tidak ada update dari gateway tersebut
dalam waktu tertentu.
Khusus untuk gateway, RIP akan mengirimkan update routing pada alamat broadcast di
setiap network yang terhubung

(config)#router rip --> Konfigurasi Routing RIP
(config-router)#network 10.0.0.0
(config-router)#network 192.168.2.0


*********************************************************************************

English

Routing RIP (Routing Information Protocol)

RIP is a dynamic routing protocol based on distance vector. RIP uses the UDP protocol
on port 520 to send routing information between routers. RIP calculates the best routing
based on the calculation of HOP. RIP takes time to converge.
RIP require low power CPU and memory are smaller than the other protocols.
It is the routing protocol that is widely used on the Internet.
Utilizing the broadcast address for the distribution of routing information.
Determining the best route to the smallest "hop count".
Routing Update was working continuously.

RIP Characteristics 
Using distance-vector algorithm (Bellman Ford).
May cause routing loops.
The diameter of the network is limited.
Slow determine changes in the network.
Using a single metric.

RIP Limitations 
Metric: Hop Count
RIP calculates the best routing based on hop count which is not necessarily a smallest hop count
are good or not, and RIP can be choose the path of a slow network.
Hop Count Limit
RIP can not adjust the hop over 15. This case is used to prevent loops in the network.
Classful Routing Only
RIP uses classful routing (/ 8, / 16 , / 24). RIP can not set up a classless routing.

How it Works RIP 
hosts heard on the broadcast address of routing updates from the gateway.
The host will first check the local routing table if it receives a routing update. If these do not exist, the information immediately inserted into the routing table.
If the route already exists, the smallest metric will be taken as a reference.
The route through a gateway will be removed if there is no update of the gateway within a certain time.
Especially for the gateway, RIP will send updates routing on broadcast address on each network are connected

(config)#router rip --> Configure Routing RIP
(config-router)#network 10.0.0.0
(config-router)#network 192.168.2.0

OSPF (Open Shortest Path First)

Bahasa

OSPF (Open Shortest Path First)

OSPF merupakan sebuah routing protokol berjenis IGP yang hanya dapat bekerja dalam
jaringan internal suatu ogranisasi atau perusahaan. Jaringan internal maksudnya adalah jaringan di
mana Anda masih memiliki hak untuk menggunakan, mengatur, dan memodifikasinya. Atau dengan
kata lain, Anda masih memiliki hak administrasi terhadap jaringan tersebut. Jika Anda sudah tidak
memiliki hak untuk menggunakan dan mengaturnya, maka jaringan tersebut dapat dikategorikan
sebagai jaringan eksternal.

Selain itu, OSPF juga merupakan routing protokol yang berstandar terbuka. Maksudnya
adalah routing protokol ini bukan ciptaan dari vendor manapun. Dengan demikian, siapapun dapat
menggunakannya, perangkat manapun dapat kompatibel dengannya, dan di manapun routing
protokol ini dapat diimplementasikan. OSPF merupakan routing protokol yang menggunakan konsep
hirarki routing, artinya OSPF membagi-bagi jaringan menjadi beberapa tingkatan. Tingkatantingkatan
ini diwujudkan dengan menggunakan sistem pengelompokan area.

Dengan menggunakan konsep hirarki routing ini sistem penyebaran informasinya menjadi lebih
teratur dan tersegmentasi, tidak menyebar ke sana ke mari dengan sembarangan. Efek dari
keteraturan distribusi routing ini adalah jaringan yang penggunaan bandwidth-nya lebih efisien, lebih
cepat mencapai konvergensi, dan lebih presisi dalam menentukan rute-rute terbaik menuju ke
sebuah lokasi. OSPF merupakan salah satu routing protokol yang selalu berusaha untuk bekerja
demikian.

Teknologi yang digunakan oleh routing protokol ini adalah teknologi linkstate yang memang
didesain untuk bekerja dengan sangat efisien dalam proses pengiriman update informasi rute. Hal ini
membuat routing protokol OSPF menjadi sangat cocok untuk terus dikembangkan menjadi network
berskala besar. Pengguna OSPF biasanya adalah para administrator jaringan berskala sedang sampai
besar. Jaringan dengan jumlah router lebih dari sepuluh buah, dengan banyak lokasi-lokasi remote
yang perlu juga dijangkau dari pusat, dengan jumlah pengguna jaringan lebih dari lima ratus
perangkat komputer, mungkin sudah layak menggunakan routing protocol ini.

Cara OSPF Membentuk Hubungan dengan Router Lain

Untuk memulai semua aktivitas OSPF dalam menjalankan pertukaran informasi routing, hal
pertama yang harus dilakukannya adalah membentuk sebuah komunikasi dengan para router lain.
Router lain yang berhubungan langsung atau yang berada di dalam satu jaringan dengan router OSPF
tersebut disebut dengan neighbour router atau router tetangga. Langkah pertama yang harus
dilakukan sebuah router OSPF adalah harus membentuk hubungan dengan neighbor router. Router
OSPF mempunyai sebuah mekanisme untuk dapat menemukan router tetangganya dan dapat
membuka hubungan. Mekanisme tersebut disebut dengan istilah Hello protocol.

Dalam membentuk hubungan dengan tetangganya, router OSPF akan mengirimkan sebuah
paket berukuran kecil secara periodik ke dalam jaringan atau ke sebuah perangkat yang terhubung
langsung dengannya. Paket kecil tersebut dinamai dengan istilah Hello packet. Pada kondisi standar,
Hello packet dikirimkan berkala setiap 10 detik sekali (dalam media broadcast multiaccess) dan 30
detik sekali dalam media Point-to-Point. Hello packet berisikan informasi seputar pernak-pernik yang
ada pada router pengirim. Hello packet pada umumnya dikirim dengan menggunakan multicast
address untuk menuju ke semua router yang menjalankan OSPF (IP multicast 224.0.0.5). Semua
router yang menjalankan OSPF pasti akan mendengarkan protocol hello ini dan juga akan
mengirimkan hello packet-nya secara berkala. Cara kerja dari Hello protocol dan pembentukan
neighbour router terdiri dari beberapa jenis, tergantung dari jenis media di mana router OSPF
berjalan.

JKT(config)#router ospf 1
JKT(config-router)#network 10.1.1.0 0.0.0.255 area 0 --> menambahkan ospf route, ip network, wildcat (255.255.255.255 - subnetmask) area 0


*********************************************************************************

English

OSPF (Open Shortest Path First)

routing protocol OSPF is an IGP manifold which can only work within the internal network of a ogranisasi or company. The internal network is a network point where you still have the right to use, manage, and modify it. Or in other words, you still have administrative rights on the network. If you not have the right to use and set it up, then the network can be categorized as an external network.

In addition, OSPF also an open-standard routing protocols. The point is this is not the creation of routing protocols from any vendor. Thus, anyone can use it, any device can be compatible with it, and in any routing protocol can be implemented. OSPF is a routing protocol that uses the concept of hierarchical routing, OSPF means to divide the network into several levels. The levels is realized by using a system of grouping area.

By using the concept of hierarchical routing information dissemination systems become more organized and segmented, not spread to and fro in vain. Effects of regularity distribution network routing is the use of its bandwidth more efficiently, more quickly reach convergence, and greater precision in determining the best route to these to a location. OSPF is a routing protocol that is always trying to work that way.

The technology used by routing protocols are linkstate technology that is designed to work with highly efficient in the process of updating the delivery route information. This makes the OSPF routing protocol becomes very suitable to be developed into a network of large-scale. User OSPF network administrators usually are medium-sized to large. Network with a router number more than ten pieces, with many remote locations that need also to reach from the center, the number of network users more than five hundred computers, it may be feasible to use this routing protocol.

How to Establish a relationship with Router OSPF Other

To begin all activity in the running OSPF routing information exchange, first to do is establish a communication with the other routers.
Any other router connected directly or inside the network with OSPF router is called the neighbor router or a neighboring router. The first step should be an OSPF router is need to form a relationship with the neighbor router. Router OSPF has a mechanism to be able to find neighboring routers and can open relationship. The mechanism is called the Hello protocol.

In forming relationships with neighboring OSPF router will send a small packet periodically to the network or to a device that is connected directly to him. Small packages are named Hello packet. In standard conditions, Hello packets are sent periodically every 10 seconds (in a multiaccess broadcast media) and 30 seconds on the media Point-to-Point. Hello packet contains information about the trinkets that exist on the sending router. Hello packets are generally transmitted by using a multicast
address to go to all the routers are running OSPF (multicast IP 224.0.0.5). All routers are running OSPF hello protocol would have to listen to this and also will send its hello packet periodically. The workings of the Hello protocol and the establishment of neighbor routers consists of several types, depending on the type of media in which the OSPF router running.

JKT(config)#router ospf 1
JKT(config-router)#network 10.1.1.0 0.0.0.255 area 0 --> added ospf route, ip network, wildcat (255.255.255.255 - subnetmask) area 0