Cara Konfigurasi IS-IS Single Area di Juniper

Pada kesempatan kali ini Saya akan share bagaimana konfigurasi IS-IS pada Juniper. Untuk yang belum tau apa itu Juniper silahkan cari di google yaa 😀
Kofigurasi IS-IS Juniper RYA-News.blogspot.com
Oke, langsung saja buat topologi seperti gambar dibawah ini :
Kemudian silahkan konfigurasi seperti ini :
1. Konfigurasi ip address di Router1

interfaces {

    em2 {

        unit 0 {

            family inet {

                address 192.168.1.1/24;

            }

            family iso;

        }

    }

    lo0 {

        unit 0 {

            family inet {

                address 1.1.1.1/32;

            }

            family iso {

                address 49.0001.0010.0100.1001.00;

            }

        }

    }

}
2. Konfigurasi ip address di Router2

interfaces {

    em2 {

        unit 0 {

            family inet {

                address 192.168.1.2/24;

            }

            family iso;

        }

    }

    em3 {

        unit 0 {

            family inet {

                address 192.168.2.1/24;

            }

            family iso;

        }

    }

    lo0 {

        unit 0 {

            family inet {

                address 2.2.2.2/32;

            }

            family iso {

                address 49.0001.0020.0200.2002.00;

            }

        }

    }

}
3. Konfigurasi ip address di Router3

interfaces {

    em2 {

        unit 0 {

            family inet {

                address 192.168.2.2/24;

            }

            family iso;

        }

    }

    lo0 {

        unit 0 {

            family inet {

                address 3.3.3.3/32;

            }

            family iso {

                address 49.0001.0030.0300.3003.00;

            }

        }

    }

}
4. Konfigurasi is is
    Router1

protocols {

    isis {

        interface em2.0 {

            level 1 disable;

        }

        interface lo0.0 {

            level 1 disable;

        }

    }

}
     Router2

protocols {

    isis {

        interface em2.0 {

            level 1 disable;

        }

        interface em3.0 {

            level 1 disable;

        }

        interface lo0.0 {

            level 1 disable;

        }

    }

}
    Router3

protocols {

    isis {

        interface em2.0 {

            level 1 disable;

        }

        interface lo0.0 {

            level 1 disable;

        }

    }

}
5. verifikasi 
    Router1

root@r1# run show route protocol isis

inet.0: 5 destinations, 5 routes (5 active, 0 holddown, 0 hidden)

+ = Active Route, - = Last Active, * = Both

2.2.2.2/32         *[IS-IS/18] 00:24:13, metric 10

                    > to 192.168.1.2 via em2.0

192.168.2.0/24     *[IS-IS/18] 00:33:51, metric 20

                    > to 192.168.1.2 via em2.0

iso.0: 1 destinations, 1 routes (1 active, 0 holddown, 0 hidden)
     Router2

root@r2# run show route protocol isis

inet.0: 6 destinations, 6 routes (6 active, 0 holddown, 0 hidden)

+ = Active Route, - = Last Active, * = Both

1.1.1.1/32         *[IS-IS/18] 00:24:58, metric 10

                    > to 192.168.1.1 via em2.0

iso.0: 1 destinations, 1 routes (1 active, 0 holddown, 0 hidden)

[edit]
      Router3

root@r3# run show route protocol isis

inet.0: 6 destinations, 6 routes (6 active, 0 holddown, 0 hidden)

+ = Active Route, - = Last Active, * = Both

1.1.1.1/32         *[IS-IS/18] 00:50:13, metric 20

                    > to 192.168.2.1 via em2.0

2.2.2.2/32         *[IS-IS/18] 00:50:21, metric 10

                    > to 192.168.2.1 via em2.0

192.168.1.0/24     *[IS-IS/18] 00:50:21, metric 20

                    > to 192.168.2.1 via em2.0

iso.0: 1 destinations, 1 routes (1 active, 0 holddown, 0 hidden)
Maaf sebelumnya untuk postingan ini sebenarnya tulisan kilat, hanya untuk dokumentasi pribadi saja agar Saya tidak lupa dengan apa yang telah Saya konfigurasi.
Apabila ada yang kurang jelas silahkan ditanyakan di kolom komentar. Terimakasih

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *