Lab. Static Routing Juniper Junos - Lab kali ini membahas tentang konfigurasi Static Routing pada Juniper Junos. Seperti yang kita bahwa terdapat 2 macam tipe routing, yakni Static Routing dan Dynamic Routing. Static routing merupakan tipe routing dimana Administrator Jaringan yang berperan menentukan arah/jalur mana yang harus dilalui oleh router.
Static Routing dimasukan manual oleh Administrator Jaringan, sedangkan dynamic routing, router mempelajari Jalan terbaik dari update route oleh setiap router. Static Routing hanya digunakan untuk exit network. Contohnya sebuah kantor kecil yang membutuhkan koneksi internet, maka cocok sekali menggunakan static routing.
Static Routing tidak cocok digunakan dalam jaringan besar. Static Routing membutuhkan directly connected address yang valid, sehingga Routing dapat berjalan. Konfigurasi static routing dilakukan pada [edit routing-options]. Sintaks yang digunakan set static route [network tujuan] next-hop [next hop address].
Pada topologi diatas, terdapat 3 router, yakni R1,R2 dan R3. Tujuan akhir yang ingin dicapai adalah network 192.168.2.0/24 dapat diping oleh PC-1 begitupula sebaliknya. Langkah yang harus dikerjakan adalah menambahkan static routing di seluruh Router.
Konfigurasi R1
system {
host-name R1;
root-authentication {
encrypted-password "$1$NiGIHqKx$.3YCo7sRU56Uj999cLNrp/"; ## SECRET-DATA
}
syslog {
user * {
any emergency;
}
file messages {
any notice;
authorization info;
}
file interactive-commands {
interactive-commands any;
}
}
}
interfaces {
em0 {
unit 0 {
family inet {
address 172.16.10.1/30;
}
}
}
em1 {
unit 0 {
family inet {
address 192.168.1.1/24;
}
}
}
}
routing-options {
static {
route 192.168.2.0/24 next-hop 172.16.10.2;
route 172.16.10.4/30 next-hop 172.16.10.2;
}
}
Pada konfigurasi diatas interface em0 menuju R2 dan em1 menuju PC1, masing-masing dikonfigurasi IP Address sesuai topologinya. Selanjutnya setelah terhubung, baru dimasukan static routing. Terdapat 2 network yang dimasukan ke static routing, yakni network PC2 dan network diantara R2-R3. Selanjutnya konfigurasi R2.
Konfigurasi R2
system {
host-name R2;
root-authentication {
encrypted-password "$1$wyeYArqC$tedaC0aPkse7gPONO9a94."; ## SECRET-DATA
}
syslog {
user * {
any emergency;
}
file messages {
any notice;
authorization info;
}
file interactive-commands {
interactive-commands any;
}
}
}
interfaces {
em0 {
unit 0 {
family inet {
address 172.16.10.2/30;
}
}
}
em1 {
unit 0 {
family inet {
address 172.16.10.5/30;
}
}
}
}
routing-options {
static {
route 192.168.2.0/24 next-hop 172.16.10.6;
route 192.168.1.0/24 next-hop 172.16.10.1;
}
}
Konfigurasi R3
system {
host-name R3;
root-authentication {
encrypted-password "$1$ZwGj3C1U$dTEpI5x1TnJ84Bl2WmQsR."; ## SECRET-DATA
}
syslog {
user * {
any emergency;
}
file messages {
any notice;
authorization info;
}
file interactive-commands {
interactive-commands any;
}
}
}
interfaces {
em0 {
unit 0 {
family inet {
address 172.16.10.6/30;
}
}
}
em1 {
unit 0 {
family inet {
address 192.168.2.1/24;
}
}
}
}
routing-options {
static {
route 192.168.1.0/24 next-hop 172.16.10.5;
route 172.16.10.0/30 next-hop 172.16.10.5;
}
}
Konfigurasi PC1 dan PC2
PC-1> ip 192.168.1.2/30 192.168.1.1
Checking for duplicate address...
PC1 : 192.168.1.2 255.255.255.252 gateway 192.168.1.1
PC-2> ip 192.168.2.2/24 192.168.2.1
Checking for duplicate address...
PC1 : 192.168.2.2 255.255.255.0 gateway 192.168.2.1
Pengujian
Dilakukan dengan melakukan ping antar PC.
PC-1> ping 192.168.2.2
84 bytes from 192.168.2.2 icmp_seq=1 ttl=61 time=21.002 ms
84 bytes from 192.168.2.2 icmp_seq=2 ttl=61 time=7.501 ms
84 bytes from 192.168.2.2 icmp_seq=3 ttl=61 time=8.501 ms
84 bytes from 192.168.2.2 icmp_seq=4 ttl=61 time=7.000 ms
84 bytes from 192.168.2.2 icmp_seq=5 ttl=61 time=10.001 ms
PC-1>
PC-2> ping 192.168.1.2
84 bytes from 192.168.1.2 icmp_seq=1 ttl=61 time=10.501 ms
84 bytes from 192.168.1.2 icmp_seq=2 ttl=61 time=9.001 ms
84 bytes from 192.168.1.2 icmp_seq=3 ttl=61 time=6.501 ms
84 bytes from 192.168.1.2 icmp_seq=4 ttl=61 time=8.001 ms
84 bytes from 192.168.1.2 icmp_seq=5 ttl=61 time=102.513 ms
PC-2>
0 comments:
Post a Comment