Skip to main content

Posts

Showing posts with the label networking

Emulating RIP(Routing information protocol) in GNS3

 RIP(Routing Information Protocol) Being one of the Oldest distance vector routing protocols, RIP is based on the Bellman-ford algorithm.  There are two versions of this protocol, which were published in 1998. We can find the complete documentation on internetsociety.org the file is located at  RIP Official Documentation . GNS3 Many professionals and students use Graphical Network Simulator to experiment with networking paradigms. we are using it to emulate the RIP routing algorithm. Components VPCs - 2 switch - 2 router(c7200) - 3 Topology Topology constructed for this exercise   Commands to set the IP address to interfaces in the router config interface <Interface_Name> ip address <IP_addr> <Mask> no shutdown Commands used for initiating the RIP routing in a server are as follows config router rip network <subnet1_network_addr> network <subnet2_network_addr> if all the commands are entered correctly we will see a result similar to...