Ok I am doing subnetting labs right now and the basic Gist of it is this.
I am given a table in which I have 2 IP addresses that need to be entered into a router. One on s0/0/0 and the other on fa0/0.
Here is the table:
Serial0/0/0 - Address 172.16.133.233 - Mask 255.255.255.128
FastEthernet0/0 - Address 172.16.133.1 - Mask 255.255.255.128
I was told to figure out what subnets each reside in, so my conclusion was:
S0/0/0 will reside in 172.16.133.128/25
Fa0/0 will reside in 172.16.133.0/25
After that, I was told to configure the router with the addresses of each interface and verify that I have the correct answer by issuing the SHOW IP ROUTE command, which I did, and I saw that my connected routes where what I calculated.
All right, so I got a 100% on the lab, but I don't understand this portion of the output:
Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP
+ - replicated route, % - next hop override
Gateway of last resort is not set
172.16.0.0/16 is variably subnetted, 4 subnets, 2 masks
C       172.16.133.0/25 is directly connected, FastEthernet0/0
L       172.16.133.1/32 is directly connected, FastEthernet0/0
C       172.16.133.128/25 is directly connected, Serial0/0/0
L       172.16.133.233/32 is directly connected, Serial0/0/0
Why do my local addresses have a different subnet mask?
I have not done VLSM yet. I know what VLSM is about in a very high level overview, but I am not understanding this output. Is it something I should know by now even though I have not done VLSM yet? That is chapter 20 of the book and I just finished up chapter 14.