Is it possible to see multiple routing protocols on a router?

johnifanx98johnifanx98 Member Posts: 329
like "show ip protocols"? Will the lately configured always flush the previous ones?

Comments

  • BeTheNetworkBeTheNetwork Member Posts: 18 ■□□□□□□□□□
    #show ip protocols || #show ip protocols summary should always show the current running Connected, Static, IGP, and EGP protocols running on the device:

    R1#sh ip proto summ
    Index Process Name
    0 connected
    1 static
    2 ospf 1
    3 eigrp 100
    4 bgp 32385
    *** IP Routing is NSF aware ***
  • MrBrianMrBrian Member Posts: 520
    You can definitely have multiple routing protocols running at the same time. That's where Administrative Distance comes in.. so if the router learns about a network through EIGRP (AD of 90), and learns about the same network through OSPF (AD of 110), than the EIGRP route will make it in the routing table.
    Currently reading: Internet Routing Architectures by Halabi
  • johnifanx98johnifanx98 Member Posts: 329
    **** wrote: »
    #show ip protocols || #show ip protocols summary should always show the current running Connected, Static, IGP, and EGP protocols running on the device:

    R1#sh ip proto summ
    Index Process Name
    0 connected
    1 static
    2 ospf 1
    3 eigrp 100
    4 bgp 32385
    *** IP Routing is NSF aware ***

    my ios is 12.4. Hmmm. summary is not supported...

    Also, it seems "sh ip proto" does not give me the "connected" part.
    Router#sh ip proto
    Routing Protocol is "rip"
    Sending updates every 30 seconds, next due in 4 seconds
    Invalid after 180 seconds, hold down 180, flushed after 240
    Outgoing update filter list for all interfaces is not set
    Incoming update filter list for all interfaces is not set
    Redistributing: rip
    Default version control: send version 1, receive any version
    Interface Send Recv Triggered RIP Key-chain
    FastEthernet0/0 1 2 1
    Serial0/0/1 1 2 1
    Serial0/0/0 1 2 1
    Automatic network summarization is in effect
    Maximum path: 4
    Routing for Networks:
    192.168.2.0
    192.168.3.0
    192.168.20.0
    192.168.30.0
    192.168.40.0
    Passive Interface(s):
    Routing Information Sources:
    Gateway Distance Last Update
    192.168.20.1 120 00:00:01
    192.168.40.2 120 00:00:27
    Distance: (default is 120)
  • NewInBussinesNewInBussines Member Posts: 28 ■□□□□□□□□□
    Yes, you can have multiple protocols on the same router, you can use it as border router or to redistribute one protocol in another.
    I used it only when I need to make conection between one network runnning Eigrp and another running RIP or OSPF.
Sign In or Register to comment.