ICDN1 various questions

KAzzzkasKAzzzkas Member Posts: 18 ■□□□□□□□□□
I have two very different quest of preparing for ICDN1.

1. I am playing with PacketTracer. Why when I connect PC1-R-PC2 I can ping from PC1 to PC2. When I connect PC1-R1-R2, I can't ping from PC1 to R2. I suspect it is because of different conseption, when R is in two different LAN's and where are LAN and WAN connections at second case. Could anybody explain it properly please?

2. How to register for CISCO exam? I have filled an application online to find a nearest location for taking exam and I need to wait for a calling or e-mail reply. It has gone more than a week and no any info from CISCO. How do you normally register to take an exam.

Thank you very much for helping.

Comments

  • sizeonsizeon Member Posts: 321
    Your question is very confusing. Ca you post a picture of the network.
  • KAzzzkasKAzzzkas Member Posts: 18 ■□□□□□□□□□
    It should work without RIP. The thing is, if I just swap PC2 with R2, I can't ping R2 from PC1. As I understand, I shouldn't be allowed to ping PC2 as well as R2. It is a bit confusing.
  • MrXpertMrXpert Member Posts: 586 ■■■□□□□□□□
    KAzzzkas wrote: »
    It should work without RIP. The thing is, if I just swap PC2 with R2, I can't ping R2 from PC1. As I understand, I shouldn't be allowed to ping PC2 as well as R2. It is a bit confusing.


    Before we get down to the finer points, we all need to know what network addressing you are using between all the links?

    To register for the exam you can do so via Pearson Vue or Prometic. You go onto one of those websites,find your nearest test centre,book the exam and pay them the money for it.
    I'm an Xpert at nothing apart from remembering useless information that nobody else cares about.
  • KAzzzkasKAzzzkas Member Posts: 18 ■□□□□□□□□□
    Ok. Lets see to this:
    PC1(IP:192.1.1.1, static, DG:192.1.1.2, fa)
    (interface fa0/0, ip address 192.1.1.2 255.255.255.0, no shutdown) R1 (interface fa0/1, ip address 192.1.2.2 255.255.255.0, no shutdown)
    PC2(IP:192.1.2.1, static, DG:192.1.2.2, fa). PC1 can ping PC2. Why?

    Lets replace PC2 with R2.

    PC1(IP:192.1.1.1, static, DG:192.1.1.2, fa)
    (interface fa0/0, ip address 192.1.1.2 255.255.255.0, no shutdown) R1 (interface fa0/1, ip address 192.1.2.2 255.255.255.0, no shutdown)
    (interface fa0/0, ip address 192.1.2.1 255.255.255.0, no shutdown)R2. PC1 can't ping R2. It looks correct and I agree with it, because PC1 doesn't know anything after R1 - about network 192.1.2.0. But how it knows about PC2 and his MAC, IP addresses in first case?

    No any RIP's or Static settings on both routers.
    means cross-over cable directly connected to the device port
  • oli356oli356 Member Posts: 364
    Wow my brain just went totally dead..

    ---
    Both PCs are connected to the same router. If your on R1 and go to the CLI and type in show ip route you see that 192.1.1.0 and 192.1.2.0 are C (connected). Therefore it works fine.
    --
    Because you add a second router, routing protocols are needed.

    PC1 can ping 192.1.2.2 because it is connected to it directly as that IP is FA 0/1 on R1.
    PC1 can't ping R2 because R2 doesn't know about 192.1.1.0 (do the show ip route command from R2).
    It knows about 192.1.2.0 because it's connected directly, but not 192.1.1.0 and as pings go to the destination and then back (the acknowledgement), R2 needs to know how to get back.

    You need to advertise each network on each router.
    So on R1: 192.1.1.0 and 192.1.2.0
    On R2: 192.1.2.0

    Now because R2 learns about 192.1.1.0 the ping will work.
    Lab:
    Combination of GNS3 and Cisco equipment if required.
  • NetworkVeteranNetworkVeteran Member Posts: 2,338 ■■■■■■■■□□
    KAzzzkas wrote: »
    Ok. Lets see to this:
    PC1(IP:192.1.1.1, static, DG:192.1.1.2, fa)
    (interface fa0/0, ip address 192.1.1.2 255.255.255.0, no shutdown) R1 (interface fa0/1, ip address 192.1.2.2 255.255.255.0, no shutdown)
    PC2(IP:192.1.2.1, static, DG:192.1.2.2, fa). PC1 can ping PC2. Why?

    PC1 => R1 => PC2
    PC1 has a route to 0.0.0.0/0 via 192.1.1.2
    R1 has a connected route to 192.1.2.0/24 via fa0/1

    PC2=> R1 => PC1
    PC2 has a route to 0.0.0.0/0 via 192.1.2.2
    R1 hasa connected route to 192.1.1.0/24 fia fa0/0

    This explains why ping works.
    PC1(IP:192.1.1.1, static, DG:192.1.1.2, fa)
    (interface fa0/0, ip address 192.1.1.2 255.255.255.0, no shutdown) R1 (interface fa0/1, ip address 192.1.2.2 255.255.255.0, no shutdown)
    (interface fa0/0, ip address 192.1.2.1 255.255.255.0, no shutdown)R2. PC1 can't ping R2.

    PC1 => R1 => R2
    PC1 has a route to 0.0.0.0/0 via 192.1.1.2
    R1 has a route to 192.1.2.0/24 via fa0/1

    R2 => R1 => PC1
    R2 has no route to 0.0.0.0/0 or 192.1.1.0/24. It drops the packet.

    As you can see, the ping actually gets from PC1 to R2 in the second case, the problem is it has no way to return. You must either tell R2 how to get to the 192.1.1.0/24 network--via RIP or static routes--or provide it with a default gateway like you would've done for any connected PC.
    It looks correct and I agree with it, because PC1 doesn't know anything after R1 - about network 192.1.2.0. But how it knows about PC2 and his MAC, IP addresses in first case?
    PC1 doesn't need to know anything beyond R1, because it's configured with a default gateway. Configuring a default gateway means "Send everything that way!"

    Hope this helps. :)
  • NetworkVeteranNetworkVeteran Member Posts: 2,338 ■■■■■■■■□□
    oli356 wrote: »
    Because you add a second router, routing protocols are needed.
    Close, but routing protocols are not required. A default gateway or static routes are also fine.
    You need to advertise each network on each router.

    So on R1: 192.1.1.0 and 192.1.2.0
    On R2: 192.1.2.0

    Now because R2 learns about 192.1.1.0 the ping will work.
    Close again. In a RIP solution, the only network that must be advertised is 192.1.1.0. Both R1 and R2 already know about 192.1.2.0 and there are no other devices to advertise it to. :)
  • oli356oli356 Member Posts: 364
    I sometimes wonder how I passed my incd1! Always forget about static routes and didn't think of DG.

    I just said 192.1.2.0 for future growth :p

    Thanks for correcting me anyway. On that note, my body isn't appreciating not having any sleep in 2 days. Time to sleep!
    Lab:
    Combination of GNS3 and Cisco equipment if required.
  • KAzzzkasKAzzzkas Member Posts: 18 ■□□□□□□□□□
    Awesome, thumbs up. Thank you very much for quick response. The thing is, when you are just a begginer in networking stuff it arises soooo many various silly questions (why?) while you studying or practising at labs environment. So it is superb when you can come here and get quick responses.
Sign In or Register to comment.