Good Evening,
I just can't seem to wrap my head around this IP addressing.
Lets say I want to use 192.168.1.0 default gateway.
Then
Router IP Address = 192.168.1.0
Lets say my subnet mask is 255.255.255.224 = 32 IP addresses and 30 hosts.
That makes my first line out g0/0 from the router to switch1
ip address 192.168.1.1 255.255.255.224
That gives me a network address of 192.168.1.1
Host range of 192.168.1.2 - 192.168.1.31
A broadcast address of 192.168.1.32
Lets make G0/1 from router to switch2
ip address 192.168.1.33 255.255.255.224
That gives me a network address of 192.168.1.33
a host range from 192.168.1.34 - 192.168.1.63
and a broadcast range on 192.168.1.64
The IP address of the router is 192.168.1.0
The IP address of switch 1 is 192.168.1.1
The IP address of switch 2 is 192.168.1.33
So why doesn't this look right? I can't quite figure it out.