2
Firstly I'm a beginner so please forgive me.
I can't quite figure out how to do this as I've only ever been taught how to assign IP addresses with the address space of xxx.xxx.xxx.xxx/24 which makes sense to me because you're only dealing with the last octet. But with /23 you're dealing with two octets aren't you?
E.g 192.168.10.0/23 is..
192.168.0000 1010. 0000 0000
Where the last 0 in the 3rd octet is included in the subnet mask.
So to make things more clear in my head, is someone able to show me an example of assigning 256 IP addresses ?
Below is the full question. Please don't fully answer the question, I would just like a push in the right direction.
As part of restructuring at the Cyber University, a new Faculty of Innovation has been established. The faculty encompasses Computer Science and Engineering disciplines. You have been tasked to design the network for the new faculty. The Default_Gateway and Router01 are part of the existing network, and the faculty has been assigned 130.120.10.0/23 address space.
Part 1
Divide the assigned address space between faculty admin, CS and ENG subnets such that the ENG subnet gets 256 IP addresses, Faculty Admin and CS subnets get 128 IP addresses each.
I'm not actually physically working with any devices, it's a lab question. The actual question is asking me to use the address space 130.120.10.0/23 and assign 256 address to subnet 1, 128 address to subnet 2 and 128 addresses to subnet 3. But I dont't want to be given the whole answer, I would just like to be shown how to do it so I know for future reference, unfortunately I don't understand how my lecturer is explaining it – oneman – 2016-09-04T03:43:27.643
Look here at this chart diagram and the images: http://cliffordfeta.tripod.com/supernettingcidr_analysis.htm... Google some terms such as supernetting, IP Addresses in binary, and octets each octet consists of 8 piece on or off 1 or 0... read up on that some to understand.
– Pimp Juice IT – 2016-09-04T03:44:49.113thank you, that sheet has helped already, I hadn't heard of supernetting – oneman – 2016-09-04T03:55:15.130
@PIMP_JUICE_IT so if I have understood correctly. For 130.120.10.0/23. My network range would be 130.120.10.1 - 130.120.11.254 ? – oneman – 2016-09-04T04:03:54.967
For
Network: 130.120.10.0/23
you haveHostStart: 130.120.10.1
and you haveHostEnd: 130.120.11.254
where yourNetmask: 255.255.254.0 = 23 11111111.11111111.1111111 0.00000000
, and yes510 hosts
. – Pimp Juice IT – 2016-09-04T05:44:31.587My honest advice would be to learn how the addresses work in binary. The octets are imaginary limits to make it easier for people to chunk numbers. When you are doing the variable length subnets like this, where the mask doesn't fall nicely on a class, the answer in binary is still perfectly clear. – root1657 – 2016-09-05T01:11:16.497