InterviewSolution
| 1. |
How Do You Enable Igrp On A Cisco Router? |
|
Answer» The way you ENABLE IGRP on a Cisco ROUTER is similar to the way you enable RIP, except you SPECIFY IGRP as the protocol and add an AUTONOMOUS system NUMBER. For example: RouterA(config)#router igrp 10 (10 is the AS number) RouterA(config-router)#network 192.168.0.0 RouterA(config-router)#network 192.168.1.0 RouterA(config-router)#network 192.168.2.0 The way you enable IGRP on a Cisco router is similar to the way you enable RIP, except you specify IGRP as the protocol and add an autonomous system number. For example: RouterA(config)#router igrp 10 (10 is the AS number) RouterA(config-router)#network 192.168.0.0 RouterA(config-router)#network 192.168.1.0 RouterA(config-router)#network 192.168.2.0 |
|