Subnetting Mistake – Understanding Overlap Errors

ciscopacket-tracer

Device  Interface   Number of Hosts Subnet  Subnet Mask

London
        Fa0/0         30           193.10.156.0     255.255.255.224
        Fa0/1         20           193.10.156.32    255.255.255.224
        S0/0/1        2            193.10.156.64    255.255.255.252
        S0/0/0        2            193.10.156.68    255.255.255.252

Edinburgh   
        Fa0/0         10           193.10.156.72    255.255.255.240
        Fa0/1         15           193.10.156.88    255.255.255.224
        S0/0/1        2            193.10.156.64    255.255.255.252
Cardiff 
        Fa0/0         14           193.10.156.120   255.255.255.224
        Fa0/1         8            193.10.156.136   255.255.255.240
        S0/0/0        2            193.10.156.68    255.255.255.252


Device  Interface   IP Address  Subnet Mask Default Gateway

London  
    Fa0/0   193.10.156.1    255.255.255.224 N/A
    Fa0/1   193.10.156.33   255.255.255.224 N/A
    S0/0/1  193.10.156.65   255.255.255.252 N/A
    S0/0/0  193.10.156.69   255.255.255.252 N/A
    Lo0     183.32.43.254   255.255.255.252 N/A
Edinburgh
    Fa0/0   193.10.156.73   255.255.255.240 N/A
    Fa0/1   193.10.156.89   255.255.255.224 N/A
    S0/0/1  193.10.156.66   255.255.255.252 N/A

Cardiff
    Fa0/0   193.10.156.121  255.255.255.224 N/A
    Fa0/1   193.10.156.137  255.255.255.240 N/A
    S0/0/0  193.10.156.70   255.255.255.252 N/A
    PC1     193.10.156.30   255.255.255.224 193.10.156.1
    PC2     193.10.156.62   255.255.255.224 193.10.156.33
    PC3     193.10.156.86   255.255.255.240 193.10.156.73
    PC4     193.10.156.118  255.255.255.224 193.10.156.89
    PC5     193.10.156.134  255.255.255.240 193.10.156.137
    PC6     193.10.156.150  255.255.255.224 193.10.156.121

enter image description here

The FA interface will get the first usable IP address and the PCs will get the last one.

I get an error when i do the addressing the overlap error. Did i do something wrong on the addressing?

Best Answer

You have overlapping networks for London and Edinburgh.

London:

    S0/0/1        2            193.10.156.64    255.255.255.252
    S0/0/0        2            193.10.156.68    255.255.255.252

Overlaps with Edinburgh:

    Fa0/0         10           193.10.156.72    255.255.255.240

If you mask the Edinburgh 193.10.156.72 with 255.255.2555.240 you get a subnet address of 193.10.156.64.

193.10.156.72   = 11000001.00001010.10011100.01001000
255.255.255.240 = 11111111.11111111.11111111.11110000
                  ===================================
                  11000001.00001010.10011100.01000000 = 193.10.156.64

You can't just make up a subnet address and mask like 193.10.156.72 255.255.255.240, you actually should mask the address to see if you got the subnet. In this case, you didn't.