Anonymous

What Is RIP Configuration?

1

1 Answers

Anonymous Profile
Anonymous answered
router> enable
Password:
router# conf t
router(config)#interface ethernet 0
router(config-if)# ip address 192.168.42.1
router(config-if)# interface ethernet 1
router(config-if)# ip address 192.168.43.1
router(config-if)# exit
router(config)# router rip
router(config-router)# network 192.168.42.0
router(config-router)# network 192.168.43.0
router(config-router)# exit
router(config-router)# ^z
router#

The example above assumes that the interfaces that will be running RIP have IP addresses on them that fall within the 204.191.42.0, and 204.191.43.0 class C ranges.

Answer Question

Anonymous