networking-forum.com
Community BlogCommunity Wiki * Register  * Search  * Login
View unanswered postsView active topics

All times are UTC - 6 hours [ DST ]



Post new topic Reply to topic  [ 35 posts ]  Go to page Previous  1, 2
Author Message
PostPosted: Sun Oct 31, 2010 10:47 am 
Online
Post Whore
Post Whore
User avatar

Joined: Wed Feb 10, 2010 2:45 am
Posts: 1639
Location: Arizona
Certs: CCNA
I really need to stop posting at 2am..


Top
 Profile  
 
PostPosted: Sun Oct 31, 2010 2:17 pm 
Online
Post Whore
Post Whore
User avatar

Joined: Wed Feb 10, 2010 2:45 am
Posts: 1639
Location: Arizona
Certs: CCNA
It took me a couple of hours but I think figured it out what's going on.

10.1.1.10 /27 has the network bit 0 -- host bit's 1-30
10.1.1.20 /27 has the network bit 0 -- host bit's 1-30
10.1.1.30 /28 has the network bit 0 & 16 -- host bit 1-15 & 17-31

So even though .10 and .20 are on a different subnet then .30, .20 and .30 shares a common .16 network bit between the 2 subnets allowing them to reach each other. At least that's how my brain made sence of it. Right?


Top
 Profile  
 
PostPosted: Sun Oct 31, 2010 2:30 pm 
Offline
Post Whore
Post Whore
User avatar

Joined: Mon Jan 17, 2005 11:01 pm
Posts: 5148
Location: Canada eh
Certs: 350-001, CCNP, CXFF, ITILv3F
.10 .20 and .30 are all on the same network with a /27 mask.

10.1.1.0/27 is addresses 10.1.1.0 to 10.1.1.31 with .0 being the network address and .31 being the subnet broadcast address.

Edit***

I should have read your original post about the problem. I don't think this has anything to do with the issue at hand. I'm not following your logic on what's going on... It sounds to me like there's a config error somewhere.

If you have 10.1.1.30/28 configured as the address/mask on switch 3 then that's the problem. It needs to be a /27.

_________________
blog.brokennetwork.ca


Top
 Profile  
 
PostPosted: Sun Oct 31, 2010 3:08 pm 
Online
Post Whore
Post Whore
User avatar

Joined: Wed Feb 10, 2010 2:45 am
Posts: 1639
Location: Arizona
Certs: CCNA
Infinite wrote:
.10 .20 and .30 are all on the same network with a /27 mask.

10.1.1.0/27 is addresses 10.1.1.0 to 10.1.1.31 with .0 being the network address and .31 being the subnet broadcast address.

Edit***

I should have read your original post about the problem. I don't think this has anything to do with the issue at hand. I'm not following your logic on what's going on... It sounds to me like there's a config error somewhere.

If you have 10.1.1.30/28 configured as the address/mask on switch 3 then that's the problem. It needs to be a /27.


This was a troubleshooting situation I had last night. They are all on the /27 now, my question is why the switches were even communicating between /27 and /28 subnet masking..

It's a weird scenario, I don't fully understand the problem, this is just what I can work out is happening.

I replicated the issue this morning by erasing the NVRAM on all 3 switches, and no configuration exist outside of just the vlan1 ip address/subnetting.

3 switches physical connected to each other, switch 1 & 2 on the /27 subnet and switch 3 on the /28 subnet.

host 10.1.1.10 /27 has a network address bit of .0, host bits of .1 - .31, and broadcast of 32.
host 10.1.1.20 /27 has a network address bit of .0, host bits of .1 - .31, and broadcast of 32.
host 10.1.1.30 /28 has a network address bit of .16, host bits of .17 - 30, and broadcast address of .31.

- When 10.1.1.10 /27 & 10.1.1.30 /28 try to communicate they can't because the don't share the same network bit
- When 10.1.1.10 /27 & 10.1.1.20 /27 everything works as expected
- When 10.1.1.20 /27 and 10.1.10.30 /28 try to communicate they can because .20 and .30 share the same .16 network bit on the /28 network. That's the only conclusion I can come to.

I think that's right, right? :thinking:


Top
 Profile  
 
PostPosted: Sun Oct 31, 2010 4:16 pm 
Offline
Post Whore
Post Whore
User avatar

Joined: Mon Jan 17, 2005 11:01 pm
Posts: 5148
Location: Canada eh
Certs: 350-001, CCNP, CXFF, ITILv3F
scottsee wrote:
This was a troubleshooting situation I had last night. They are all on the /27 now, my question is why the switches were even communicating between /27 and /28 subnet masking..


I'm confused. If all the interfaces have a /27 mask where are you getting a /28 from? Or did you have them different last night but you've now corrected it?

scottsee wrote:
It's a weird scenario, I don't fully understand the problem, this is just what I can work out is happening.

I replicated the issue this morning by erasing the NVRAM on all 3 switches, and no configuration exist outside of just the vlan1 ip address/subnetting.

3 switches physical connected to each other, switch 1 & 2 on the /27 subnet and switch 3 on the /28 subnet.

host 10.1.1.10 /27 has a network address bit of .0, host bits of .1 - .31, and broadcast of 32.
host 10.1.1.20 /27 has a network address bit of .0, host bits of .1 - .31, and broadcast of 32.
host 10.1.1.30 /28 has a network address bit of .16, host bits of .17 - 30, and broadcast address of .31.


A little error here. .31 is the broadcast on a /27. .32 is going to be the network address of the next subnet.

And if I may nitpick, your use of terminology is a bit awkward here. I would say "the subnetwork bits are all set to 0" as opposed to saying "the network bit is set to .0". In this case, using the class c private range, you have a network of the first 24 bits, a subnet of 3 bits (due to the /27) and a 5 host bits.

Of course, that's assuming things are classful, which they are not, so it's all wrong anyway. Now it's just 27 bits for the network, and 5 for the host. There is no such thing a classes anymore and referring to them is incorrect.

scottsee wrote:
- When 10.1.1.10 /27 & 10.1.1.30 /28 try to communicate they can't because the don't share the same network bit
- When 10.1.1.10 /27 & 10.1.1.20 /27 everything works as expected
- When 10.1.1.20 /27 and 10.1.10.30 /28 try to communicate they can because .20 and .30 share the same .16 network bit on the /28 network. That's the only conclusion I can come to.

I think that's right, right? :thinking:


After reading this a few times, and changing my reply... I think you might have the right idea, you're just expressing it the wrong way.

It's not that they share the same "network bit", it's the switch 3 thinks that switch 2 is in the same subnet and that switch 1 is in a remote subnet.

switch 2 - 10.1.1.20/27 which means switch 2 thinks that addresses 10.1.1.1 - 10.1.1.30 are valid host addresses in its local subent.

switch 3 - 10.1.1.30/28 which means that switch 3 thinks that addresses 10.1.1.17 - 10.1.1.30 are valid host addresses in its local subnet.

When hosts are communicating on their local subnet they will ARP to get the layer two address, and then send the packet. If a host wants to communicate with another host that is not on its local subnet it needs to use its default gateway. If you have not configured a default gateway on switch 3 then it it needs to send a packet to a host not on its local subnet (it will think 10.1.1.10 is NOT local) then it will drop the packet because it has no way to reach it.

Does that make sense?

_________________
blog.brokennetwork.ca


Top
 Profile  
 
PostPosted: Sun Oct 31, 2010 4:29 pm 
Offline
Senior Member
Senior Member

Joined: Sat May 06, 2006 4:00 pm
Posts: 350
Location: Sweden
Certs: CCIE #37149 , CCNP, CCDA
10.1.1.10/27 is the 10.1.1.0 subnet, which has a range from 1 to 30 and broadcast of 31, from it's perspective .30 is in the same subnet. Traffic from 1.10 can reach 1.30, but when 1.30 needs to send a reply this is what happens:

10.1.1.30/28 is the 10.1.1.16 subnet, which means .10 is not in the same subnet, this means you need routing for .30 to know how to reach back to .10.

10.1.1.20/27 is the 10.1.1.0 subnet, .30 is in the same subnet from .20 perspective.
10.1.1.30/28 is as mentioned before the 10.1.1.16 subnet which means .20 is a valid host.

So what you are seeing is expected behaviour. You are on the right track with your thinking but you probably need to practice some more subnetting and get the terminology right, but thats what the scholarship is for right? :)

_________________
http://lostintransit.se


Top
 Profile  
 
PostPosted: Sun Oct 31, 2010 4:48 pm 
Online
Post Whore
Post Whore
User avatar

Joined: Wed Feb 10, 2010 2:45 am
Posts: 1639
Location: Arizona
Certs: CCNA
Sorry for the confusion. I literally just started studying a couple nights ago. It's frustrating not having the vocabulary and terminology down. I'll put a lot more effort into making things more clear.


Top
 Profile  
 
PostPosted: Sun Oct 31, 2010 4:52 pm 
Offline
Post Whore
Post Whore
User avatar

Joined: Mon Jan 17, 2005 11:01 pm
Posts: 5148
Location: Canada eh
Certs: 350-001, CCNP, CXFF, ITILv3F
Don't sweat it. It'll come ;)

_________________
blog.brokennetwork.ca


Top
 Profile  
 
PostPosted: Mon Nov 01, 2010 8:56 am 
Offline
Post Whore
Post Whore
User avatar

Joined: Tue Aug 21, 2007 2:15 pm
Posts: 8303
Location: Frederick MD
Certs: Instanity
for ease of things, and just starting out, put everything in a /24, makes it a wee bit easier.


Top
 Profile  
 
PostPosted: Mon Nov 08, 2010 10:51 am 
Offline
Post Whore
Post Whore
User avatar

Joined: Thu Apr 17, 2008 6:44 pm
Posts: 6049
Location: Perth, WA
Certs: CCNA
ristau5741 wrote:
for ease of things, and just starting out, put everything in a /24, makes it a wee bit easier.


+1

These crafty gents speak the truth. By the way Scott I like the cut of your jib. Keep up the good work mate. :mrgreen:

_________________
- Pete


Top
 Profile  
 
PostPosted: Sun Nov 27, 2011 5:31 pm 
Offline
New Member
New Member
User avatar

Joined: Tue Jun 21, 2011 11:45 am
Posts: 13
I had a question about lab #1 and #2.

I'm unable to get the interfaces to come up. I've built the lab on physical routers. I'm using T1 cables to connect the routers. Am I doing something wrong building this lab out on physical and not on GNS3.

A sh interface gives me down/down.


Top
 Profile  
 
PostPosted: Mon Nov 28, 2011 3:29 am 
Offline
CCIE #38070
CCIE #38070
User avatar

Joined: Wed Jun 18, 2008 7:49 am
Posts: 12433
Location: London, UK
Certs: CCIE ,CC-NP/IP, JNCIP-SP, JNCIS-ENT, BC-/SPNE/NP
zeroadmin wrote:
I had a question about lab #1 and #2.

I'm unable to get the interfaces to come up. I've built the lab on physical routers. I'm using T1 cables to connect the routers. Am I doing something wrong building this lab out on physical and not on GNS3.

A sh interface gives me down/down.


Which interfaces? Serial? Have you set the clock rates?

_________________
www.mellowd.co.uk/ccie/


Top
 Profile  
 
PostPosted: Tue Nov 29, 2011 2:58 am 
Offline
New Member
New Member
User avatar

Joined: Tue Jun 21, 2011 11:45 am
Posts: 13
yes the serial interface. So I did a 'clock rate 64000' as shown in the config, but it won't show up in the configuration. I'm thinking this could be the problem? No?

It should look like this
interface Serial0/0
no ip address
shutdown
serial restart-delay 0
clock rate 64000
no shutdown

but my config looks like this
interface Serial0/0
no ip address
serial restart-delay 0


Top
 Profile  
 
PostPosted: Tue Nov 29, 2011 12:20 pm 
Offline
Member
Member

Joined: Sun Apr 17, 2011 7:06 pm
Posts: 234
First off, what type of card are you using?

Both T1 and Synchronous Serial interfaces will show up with "Serial" interface names.

If it really is T1 on an integrated CSU/DSU card (eg WIC-1DSU-T1), with a T1 crossover cable, then "clock rate" won't apply, because the T1 interface specifies a specific clock rate.

If it's a synch serial interface, then I'm not sure. My first thought is that you're not entering the command on a DCE interface (show controllers serial 0/0), but I'm pretty sure that if you mistakenly type the command on a DTE interface, it will complain about it not being a valid command for DCE interfaces.


Top
 Profile  
 
PostPosted: Thu Dec 01, 2011 1:47 am 
Offline
Senior Member
Senior Member
User avatar

Joined: Mon Aug 24, 2009 3:04 pm
Posts: 380
Location: San Diego, CA
I believe he's using a WIC-1DSU-T1 or a VWIC-1MFT-T1 card since he's using T1 crossover cable.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 35 posts ]  Go to page Previous  1, 2

All times are UTC - 6 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group