IP Addressing and DNS computer Network

NeerajChauhan697157 9 views 42 slides Sep 25, 2024
Slide 1
Slide 1 of 42
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10
Slide 11
11
Slide 12
12
Slide 13
13
Slide 14
14
Slide 15
15
Slide 16
16
Slide 17
17
Slide 18
18
Slide 19
19
Slide 20
20
Slide 21
21
Slide 22
22
Slide 23
23
Slide 24
24
Slide 25
25
Slide 26
26
Slide 27
27
Slide 28
28
Slide 29
29
Slide 30
30
Slide 31
31
Slide 32
32
Slide 33
33
Slide 34
34
Slide 35
35
Slide 36
36
Slide 37
37
Slide 38
38
Slide 39
39
Slide 40
40
Slide 41
41
Slide 42
42

About This Presentation

Computer network ip addressing


Slide Content

CLASSFULL ADDRESSING

•Example:
•Given the network address 17.0.0.0, find the class, the block, and the
range of the addresses.
•Solution:
•The class is A because the first byte is between 0 and 127. The block
has a netidof 17. The addresses range from 17.0.0.0 to
17.255.255.255.

•Example:
•Given the network address 132.21.0.0, find the class, the block, and
the range of the addresses.
•Solution:
•The class is B because the first byte is between 128 and 191. The
block has a netid of 132.21. The addresses range from 132.21.0.0 to
132.21.255.255.

•Example:
•Given the network address 220.34.76.0, find the class, the block, and
the range of the addresses.
•Solution:
•The class is C because the first byte is between 192 and 223. The
block has a netid of 220.34.76. The addresses range from 220.34.76.0
to 220.34.76.255.

•Example:
•Given the address 23.56.7.91 and the default class A mask, find the
beginning address (network address).
•Solution:
•The default mask is 255.0.0.0, which means that only the first byte is
preserved and the other 3 bytes are set to 0s. The network address is
23.0.0.0.

•Example:
•Given the address 132.6.17.85 and the default class B mask, find the
beginning address (network address).
•Solution:
•The default mask is 255.255.0.0, which means that the first 2 bytes
are preserved and the other 2 bytes are set to 0s. The network
address is 132.6.0.0.

Subnetting

Example

Example

Example-cont.

Example

Example

•Example:
•We need to make a supernetworkout of 16 class C blocks. What is the
supernetmask?
•Solution:
•We need 16 blocks. For 16 blocks we need to change four 1s to 0s in
the default mask. So the mask is 11111111 11111111
1111000000000000 or 255.255.240.0

•Example:
•A supernet has a first address of 205.16.32.0 and a supernet mask of
255.255.248.0. How many blocks are in this supernet and what is the
range of addresses?
•Solution:
•The supernet has 21 1s. The default mask has 24 1s. Since the
difference is 3, there are 23or 8 blocks in this supernet. The blocks are
205.16.32.0 to 205.16.39.0. The first address is 205.16.32.0. The last
address is 205.16.39.255