Quote:
Originally Posted by kevin31 Hi Guys,
Can someone help with this the penny is just not dropping with me?
What techniques do people use?
thanks
Kev |
Here is my plan for taking the exams. Before I start the test, I'm going to scribble down the following table to help me do the subnetting in my head.
Code:
2^1 2
2^2 4
2^3 8
2^4 16
2^5 32
2^6 64
2^7 128
2^8 256
2^9 512
2^10 1024
2^11 2048
2^12 4096
Code:
128 /9 /17 /25
192 /10 /18 /26
224 /11 /19 /27
240 /12 /20 /28
248 /13 /21 /29
252 /14 /22 /30
254 /15 /23
255 /16 /24
The first table will allow me to do powers of 2 quickly. The second table will allow me to convert from CIDR to decimal notation quickly. Using these two tables should allow me to do everything else in my head.
Examples:
Which subnet does the host 192.158.4.75/22 belong to?
A: Convert the /22 notation to decimal subnet mask using the table: 255.255.252.0. The network blocks are going to be multiples of 4 (256 - 252 = 4), so the networks will be 192.168.0.0, 192.168.4.0, 192.168.8.0. Answer is 192.168.4.0
What are the available hosts in the above subnet example?
A: We know that the network address is 192.168.4.0, so the first host would be 192.168.4.1. We also know that the next network will be 192.168.8.0, so 192.168.7.255 will be our subnet's broadcast address, leaving 192.168.7.254 as the last available host. Answer is 192.168.4.1 - 192.168.7.254.