08-08-2022 07:01 PM
Solved! Go to Solution.
08-08-2022 07:34 PM - last edited on 08-15-2022 10:14 PM by Translator
IP address 170.66.0.66 255.255.0.0 should be on GigabitEthernet0/0.10, not 66.1.1.1 which I not sure why or where is goes. So either move 170 IP to 0/0.10 and remove 66.1.1.1 or remove GigabitEthernet0/0.10 completely. If you planing on using ROAS, then keep GigabitEthernet0/0.10 and encapsulation dot1Q. I do not see reason for it right now.
interface GigabitEthernet0/0
no ip address
!
interface GigabitEthernet0/0.10
encapsulation dot1Q 10
ip address 170.66.0.66 255.255.0.0
!
router rip
no auto
Regards, ML
**Please Rate All Helpful Responses **
08-08-2022 07:28 PM - last edited on 08-15-2022 10:12 PM by Translator
Hello,
Not bad but you missed a couple of minor things. First lets start with RIP. It is a Classful protocol by default so without any other commands it will lump subnets into their classfull address and mask. So if you subnet a class A address then it will just be advertised as 1 class A address and mess up routing. TO fix that issue the following command on all routers.
conf t
router rip
no auto-summary
Then you have the PC 0 in the wrong VLAN.
interface GigabitEthernet0/0
ip address 170.66.0.66 255.255.0.0
duplex auto
speed auto
!
interface GigabitEthernet0/0.10
encapsulation dot1Q 10
ip address 66.1.1.1 255.0.0.0
You have the 0/0.10 interface configured with a dot1q tag of 10 so it knows to accept frames from VLAN 10. The G0/1 interface however does not have any dot1q tag. Which means use the native VLAN (an untagged VLAN on a trunk link). By default on CISCO that's VLAN 1. You had the PC in VLAN 10 with the printer. Once I moved it to VLAN 1 and fixed the routing as mentioned above everything worked.
Hope that helps
-David
08-08-2022 10:47 PM
08-09-2022 12:37 AM - edited 08-09-2022 12:38 AM
Hello
The reason you do not have connectivity it two fold.
Lastly you mention you wish to provide intervlan routing, and not ROAS however you cannot allow vlan extension with the current topology you have setup.
08-08-2022 07:34 PM - last edited on 08-15-2022 10:14 PM by Translator
IP address 170.66.0.66 255.255.0.0 should be on GigabitEthernet0/0.10, not 66.1.1.1 which I not sure why or where is goes. So either move 170 IP to 0/0.10 and remove 66.1.1.1 or remove GigabitEthernet0/0.10 completely. If you planing on using ROAS, then keep GigabitEthernet0/0.10 and encapsulation dot1Q. I do not see reason for it right now.
interface GigabitEthernet0/0
no ip address
!
interface GigabitEthernet0/0.10
encapsulation dot1Q 10
ip address 170.66.0.66 255.255.0.0
!
router rip
no auto
Regards, ML
**Please Rate All Helpful Responses **
08-08-2022 10:31 PM
so I moved 170 IP to 0/0.10
What's the IP now for 0/0?
I'm not too sure but I think the goal for this Lab is Intervlan routing with ROAS?
08-08-2022 10:40 PM
What's the IP now for 0/0?
there is no IP to configure on that interface since you looking to configure 802.1q tagging with sub interfaces.
example and good explanation :
08-08-2022 10:52 PM
Thank you! How am I now able to ping from PC0 to PC 3, PC 2, and Server 0? Because I still can't do that. I can now ping from PC 0 to the router after revising
08-09-2022 02:58 AM
Not sure if you read my solution above but what I listed fixed your issues. I downloaded your packet tracer and I was able to ping everything.
-David
08-09-2022 03:19 AM - last edited on 08-15-2022 10:23 PM by Translator
no IP for GigabitEthernet0/0, if you add another vlan, like vlan 20, on switch A, then Router A2 would need another sub-interface to route between those vlans. i.e
interface GigabitEthernet0/0.20
encapsulation dot1Q 20
ip address x.y.z
all routers should have
no auto-summary
under Rip
see attach file
Regards, ML
**Please Rate All Helpful Responses **
08-09-2022 02:42 AM - last edited on 08-15-2022 10:24 PM by Translator
sure you can not ping because the when I do
show ip route
there is no "L" for RouterB and RouterC !!!
solution, make RouterB and RouterC same model of RouterA,
this may be bug in PKT so change the router to one model RouterA (since RouterA have no issue with "L" route).
08-10-2022 04:52 PM
Sorry for the late reply, but it works now. Thank you so much to everyone!
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide