Cool.
Configuration of a static neighbor is pretty straight-forward, but again, as with all IOS configuration, knowing how and why things work makes the design and verification much easier. To configure a static neighbor, you would enter the router sub command context and assign the neighbor as such:
router eigrp 9
neighbor <ip_address_of_intended_neighbor> <outgoing_int_on_router>
Some things to note about the above commands:
- the ip address of the neighbor router must be from the subnet connected to the listed interface
- a "network" command is not required, because EIGRP will still advertise the subnet connected to that interface
show ip eigrp neighbors detail
Without the detail command, IOS only shows that a neighbor is valid or not. Other interesting facts about statically assigning neighbors are that IOS disables all EIGRP broadcasts on an interface where a neighbor is statically assigned. There is no need to broadcast out that interface any longer since we're defining specific neighbor partnerships. As a result, any dynamically discovered neighbors will cease to work, and no new neighbors will be dynamically discovered.
Apply with caution, and always know what you're doing before you press "Enter."
EIGRP is fun...
No comments:
Post a Comment