October 20, 2012

EIGRP on Packet Tracer

Hi everyone, today we are going to apply Enhanced Interior Gate Way Routing Protocol (EIGRP) on packet tracer.  Here are the basic set of commands that we can apply on router CLI mode in order to apply EIGRP on router.

clip_image002

Also, look at some additional commands.

clip_image002[7]

Now, we are going to apply EIGRP on the following topology.

eigrp diagram

Now, after successfully applying IP addresses like in this topology, we will apply following commands.
Router(config)#router eigrp 10
Router(config-router)#network 192.168.1.0
Router(config-router)#network 192.168.2.0
Router(config-router)#exit

Apply the above set of commands on both routers like this.

eigrp 1

And eigrp protocol has been applied on this topology. Notice the following command.
router eigrp 10
This number ‘10' is the process ID.







6 comments:

  1. what does process id mean?

    ReplyDelete
    Replies
    1. Process id differentiate between different eigrp instances. Means u can have multiple instances in one router . It also provides security . One process id cannot communicate with other process id

      Delete
    2. thank you sir

      Delete
  2. hi sir,can u pls tell me step by step procedure to configure EIGRP protocol?

    ReplyDelete
    Replies
    1. Follow this tutorial for all the detailed configurations.

      http://cs-study.blogspot.com/2012/10/rip-on-packet-tracer.html

      And instead of applying routing protocol RIP , Apply EIGRP . Hope that helps.

      Delete
  3. This comment has been removed by the author.

    ReplyDelete

C program to Read From a File

#include <stdio.h> #include <stdlib.h> void main() {     FILE *fptr;     char filename[15];     char ch;   ...