Good day to all, please help me figure out how to delete a route from eigrp. It was implemented like this:

ip routing router eigrp 101 network 10.25.192.0 0.0.0.63 network 10.25.81.0 0.0.0.255 network 192.168.1.0 0.0.0.255 exit 

At first, everything suited me, but now the concept and requirements have changed, now I need to remove the network 192.168.1.0 0.0.0.255 so that this network would not be visible from these two

 network 10.25.192.0 0.0.0.63 network 10.25.81.0 0.0.0.255 

but she network 192.168.1.0 0.0.0.255 saw network 10.25.81.0 0.0.0.255 Thanks for the help

    1 answer 1

    Good day. Well, if you stupidly delete without analyzing what and why then:
    ROUTER(config)#router eigrp 101 ROUTER(config-router) no network 192.168.1.0 0.0.0.255
    Though I don’t see the whole network topology, it seems to me then this network will become unavailable, and as a result, the network will not be available from it 10.25.81.0/24 Make it visible 10.25.81.0/24 from 192.168.1.0/24 I think you can using PBR or static route. Not seeing the network map is difficult to give an exact answer.

    • Thank you, the issue is resolved, ROUTER (config-router) no network 192.168.1.0 0.0.0.255 quite happy - Ethernets