Skip to main content

EIGRP Stub Receive-Only

 

EIGRP Stub Receive-Only




Receive-only yaitu router yang menjadi stub tidak akan mengadvertise network apapun hanya menerima saja

R2 

R2(config)#router eigrp 1 

R2(config-router)#no eigrp stub redistributed 

R2(config-router)#eigrp stub receive-only

 R3 

R3#sh ip route 

 23.0.0.0/24 is subnetted, 1 subnets 

C 23.23.23.0 is directly connected, FastEthernet0/0 

R2 

R2#sh ip route 

 1.0.0.0/32 is subnetted, 1 subnets 

S 1.1.1.1 [1/0] via 12.12.12.1 

 2.0.0.0/8 is variably subnetted, 5 subnets, 2 masks 

C 2.2.0.0/24 is directly connected, Loopback0 

D 2.2.0.0/22 is a summary, 00:24:01, Null0

C 2.2.1.0/24 is directly connected, Loopback1 

C 2.2.2.0/24 is directly connected, Loopback2 

C 2.2.3.0/24 is directly connected, Loopback3 

 23.0.0.0/24 is subnetted, 1 subnets

 C 23.23.23.0 is directly connected, FastEthernet0/0

 12.0.0.0/24 is subnetted, 1 subnets 

C 12.12.12.0 is directly connected, GigabitEthernet1/0 

R1

 R1#sh ip route  

1.0.0.0/32 is subnetted, 1 subnets 

C 1.1.1.1 is directly connected, Loopback0 12.0.0.0/24 is subnetted, 1 subnets 

C 12.12.12.0 is directly connected, GigabitEthernet1/0

selesai

Comments

Popular posts from this blog

Phase 1 Dynamic Mapping With EIGRP

  Phase 1 Dynamic  Mapping With EIGRP Tentu kalian sudah tau, apa yang akan kita bahas pada blogg ini yaitu    Phase 1 Dynamic Mapping With EIGRP . ..  Nah Pada lab Sekarang buat routing eigrp pada setiap router baik hub  atau spoke untuk menghubungkan jaringan local masing-masing spoke  atau hub, dalam hal ini ip loopback akan kita anggap sebagai ip jaringan  local kita gaessss. Dan disini seperti di judul, kita menggunakan routing EIGRP lagi yaa... Oiya, karena ini adalah lab lanjutan dari lab VPN sebelumnya... soo saya hanya melakukan konfigurasi yang hanya pada lab ini saja, dan jika temen - temen ingin melihat konfigurasi dasarnya dari lab ini... temen - temen bisa lihat di lab - lab sebelumnya... silahkan copy dan paste link dibawah ini.. 👉https://insinyurbocah2109.blogspot.com/2020/11/belajar-vpn-gre-tunnel.html BELAJAR VPN ( GRE TUNNEL ) - Lab 1 VPN 👉 https://insinyurbocah2109.blogspot.com/2020/11/belajar-vpn-ipsec-tunnel-mode.html BELAJ...

Konfigurasi Event CLI

Konfigurasi Event CLI =LAB INI LANJUTAN DARI LAB SEBELUMNYA TOPOLOGI 1 R1(config)#event manager applet SHOW_INTERFACE_UP R1(config-applet)#event cli pattern "show ip interface brief" sync yes R1(config-applet)#action 1.0 cli command "enable" R1(config-applet)#action 2.0 cli command "show ip interface brief | include up" R1(config-applet)#action 3.0 puts "$_cli_result" R1(config-applet)#action 4.0 set $_exit_status "0" SETELAH ITU BISA KALIAN CEK DENGAN DO SH IP INT BR 

Konfigurasi Event OSPF Adjacency (Email)

  Konfigurasi Event OSPF Adjacency (Email) LAB INI LANJUTAN SAMA SEPERTI LAB SEBELUM SEBELUMNYA Selain event syslog tadi kita juga bisa memanfaatkan EEM ini untuk mengirimkan informasi ke email kita, misalnya OSPF kita down maka, router kita otomatis akan mengirimkan debug ospf ke email kita. Untuk topology masih sama. KONFIG R1 R1(config)#event manager applet OSPF_DOWN R1(config-applet)#event syslog pattern "Nbr 2.2.2.2 on FastEthernet0/0 from FULL to DOWN" R1(config-applet)#action 1.0 cli command "enable" R1(config-applet)#action 2.0 cli command "debug ip ospf adj" R1(config-applet)#action 3.0 mail server "smtp.gmail.com" to "uuqeili@gmail.com" from "R1@idn.id" subject "OSPF IS DOWN" body "Please fix OSPF" R1(config-applet)#exit Untuk Pengecekkan, kita bisa coba debug aja,  dan hapus EEM interface down,  Dan kita bisa lihat di email kita apa hasilnyaa... selesai