From zyrex, 6 Years ago, written in PHP.
This paste is a reply to Untitled from zyrex - go back
Embed
Viewing differences between Untitled and nettverksoppgaver
5)
Det er ingen DHCP-server tilgjengelig i nettverket du er tilkoblet, og Windows tildeler automatisk denne adressen til nettverkskortet - ogs� kjent som Automatic Private IP Addressing.

4)
10.25.28.32/20

Bruk denne for � f� hjelp til � kalkulere;
https://networkengineering.stackexchange.com/questions/7106/how-do-you-calculate-the-prefix-network-subnet-and-host-numbers

Det blir mye konvertering til bin�rt, men det burde v�re greit.
Skal inneholde alle �nskede svar.

3)
Det blir en del utregninger, men du kan komme fram til svarene her og ved hjelp av infoen i oppgave 4.

Eksempel:

DeviceA: 192.168.30.2/27
DeviceB: 192.168.30.128/27
Determine the Subnet for DeviceA:

192.168.30.2          -   11000000.10101000.00011110.00000010
255.255.255.224 -   11111111.11111111.11111111.11100000
                  -----------------| sub|------------
subnet =            11000000.10101000.00011110.00000000 = 192.168.30.0
Looking at the address bits that have a corresponding mask bit set to one, and setting all the other address bits to zero (this is equivalent to performing a logical "AND" between the mask and address), shows you to which subnet this address belongs. In this case, DeviceA belongs to subnet 192.168.30.0.

Determine the Subnet for DeviceB:

192.168.30.128         -   11000000.10101000.00011110.10000000?
255.255.255.224 -   11111111.11111111.11111111.11100000
                  -----------------| sub|------------
subnet =            11000000.10101000.00011110.00000000 = 192.168.30.0

From these determinations, DeviceA and DeviceB have addresses that are part of the same subnet.