Book now with code EOY2025
gabrielbtoledo wrote: Well, EIGRP is a classless protocol, so I don't have to put classfull networks. So, the first command is in case I want to put a classfull network and the second when I want to put a classless one?
keenon wrote: your first command tells the router which interfaces to include in the routing process and to share from.
gabrielbtoledo wrote: keenon wrote: your first command tells the router which interfaces to include in the routing process and to share from. So, EIGRP is not like RIP when you put the network you want to advertise instead of putting the interface that will advertise in IEGRP?
gabrielbtoledo wrote: r_durant: Thanks, but my question now is... RIP - input networks that you want to be advertised. EIGRP - input interfaces that will advertise. That is my question.
If you had IP's 10.1.1.1/24 10.1.2.1/24 10.1.3.1/24 and you only wanted EIGRP to advertise on one of those interfaces and not all of them. enable conf t router eigrp 10 no auto-sum Network 10.1.2.0 0.0.0.255
Interface E0 ip address 10.1.1.1 255.255.255.0 ! Interface E1 ip address 10.2.1.1 255.255.255.0
router eigrp 10 network 10.0.0.0 --- or --- router eigrp 10 network 0.0.0.0 255.255.255.255 --- or ---- router eigrp 10 network 10.1.1.0 0.0.0.255 network 10.2.1.0 0.0.0.255 ---- or (my favorite) ---- rotuer eigrp 10 network 10.1.1.1 0.0.0.0 network 10.2.1.1 0.0.0.0
dtlokee wrote: The behavior of the network command for all IGPs (RIP, EIGRP, OSPF, et al) is to specify what interfaces we want to send and receive updates on. It has no bearing on what address and mask is advertised regardless of the protocol.
dtlokee wrote: Interface E0 ip address 10.1.1.1 255.255.255.0 ! Interface E1 ip address 10.2.1.1 255.255.255.0 Assuming that is the configuration for the router interfaces, there are a number of combinations that we can use to tell the router to send updates through the interface.router eigrp 10 network 10.0.0.0 --- or --- router eigrp 10 network 0.0.0.0 255.255.255.255 --- or ---- router eigrp 10 network 10.1.1.0 0.0.0.255 network 10.2.1.0 0.0.0.255 ---- or (my favorite) ---- rotuer eigrp 10 network 10.1.1.1 0.0.0.0 network 10.2.1.1 0.0.0.0 So which one is correct? they all are. They all do the same thing, tell the router to send updates through both int E0 and E1, and to advertise the subnets 10.1.1.0/24 and 10.2.1.0/24. Keep in mind the network command does not tellthe router what to advertise, just which interfaces to advertise. Also there's some confusion about auto-summary here. Since all router interfaces are int the major network 10.0.0.0 it is not needed in this example. It's generally a good idea to disable it anyhow, but you must understand why. If the router had interfaces connected to more than one major network it would be needed, but in this case it's not.
network 10.1.1.1 0.0.0.0 network 10.2.1.1 0.0.0.0
gabrielbtoledo wrote: So, when you input the network address (we talking about EIGRP) to be advertised and you don't specify the mask or wild card mask, we are meaning the network as a whole (classful), however if we want to advertise a subnetwork, then we would input the mask or wild card mask, right?
gabrielbtoledo wrote: Also, in your last example: network 10.1.1.1 0.0.0.0 network 10.2.1.1 0.0.0.0 We use this way when we want an exactly match, right?
r_durant wrote: dtlokee...so my question now is... Am I wrong in the way i look at it? I understand fully what you explained, but i just look at it from the subnet and not the interface. The way i see it, an interface will have an address, so that goes without saying...it's tied to the interface already...so if i want to advertise subnet x, it's already on that specific interface?? Maybe it's just how i interpret it or try to explain it, but i understand how and why it's done...
rjbarlow wrote: For my learning in order to "cut" one interface from advertise the routes in EIGRP is possible to issue the "router(config-router)#passive-interface <interface>", that in EIGRP means that the specified interface not send and not learn routes. But if is possible to use wildcard mask with the "network" command in EIGRP I think it follow the rules of the wildcardmask too.
Use code EOY2025 to receive $250 off your 2025 certification boot camp!