Anyone here knows how to deal with networking?

Here's my network scheme in Packet Tracer:

WAN network scheme

How do I do the routing in CLI to connect those three routers?

Note that the routers are in different cities.

Thanks.

link|improve this question

64% accept rate
feedback

1 Answer

On each router enter the following commands:

conf t
router rip
network ***.***.***.*** ^^^.^^^.^^^.^^^
.
.

end

where the ***.***.***.*** is the ip of a directly connected network and the ^^^.^^^.^^^.^^^ is this networks mask.

repeat the "network ... " command for each directly connected network, and you should be good to go, the rip then takes care of sending advertising messages every 15 sec. or so.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.