Question

In: Computer Science

Consider a company which owns a license of Class C network (207.84.123.0), This Company wants to...

Consider a company which owns a license of Class C network (207.84.123.0), This Company wants to create 14 subnetworks.
1.
Determine the number of bits borrowed
2.
How many bits are then used for the subnet ID?
Determine the maximum number of hosts in each subnet
3.
Determine the subnet mask of this scheme
4.
Determine the first, the forth and the last network (subnet) addresses
5.
Determine the first host address, the last host address and the broadcast address in only the first subnet.
6.
7. To which subnet belongs the host having the address 207.84.123.181?

Solutions

Expert Solution

1.

We need to create 14 subnets . So number of bits borrowed = 4 bits . Because 2^4=16 .

2.

So it means 4 bits are used for subnet id .

So number of bites in host id of each subnet = 8-4=4 .

So number of hosts in each subnet = 2^4-2 = 16-2=14

3 .

In subnet mask all the host id bits are 0's . And subnet id + network id bits are 1's. So , subnet mask is --

1 1 1 1 1 1 1 1 . 1 1 1 1 1 1 1 1 . 1 1 1 1 1 1 1 1 . 1 1 1 1 0 0 0 0 = 255.255.255. 240

4.

first subnet address is

207 . 84 . 123 . 0 0 0 0 0 0 0 0 = 207.84.123.0

Second subnet address is

207 . 84 . 123 . 0 0 0 1 0 0 0 0 = 207.84.123.16

Third subnet address is

207 . 84 . 123 . 0 0 1 0 0 0 0 0 = 207.84.123.32

Fourth subnet address is

207 . 84 . 123 . 0 0 1 1 0 0 0 0 = 207.84.123.48

Last subnet address is

207 . 84 . 123 . 1 1 1 1 0 0 0 0 = 207.84.123.240

5.

First subnet address is

207 . 84 . 123 . 0 0 0 0 0 0 0 0 = 207.84.123.0

So first host ---

207 . 84 . 123 . 0 0 0 0 0 0 0 1 = 207.84.123.1

Last host

207 . 84 . 123 . 0 0 0 0 1 1 1 0 = 207.84.123.14

Broadcast address

207 . 84 . 123 . 0 0 0 0 1 1 1 1 = 207.84.123.15

6.

Network address given is

207.84.123.181

So in binary last octet 181 can be written as 10110101

So it means subnet id bits are 1011 = 11

So it means this network address belongs to 12th subnet.


Related Solutions

Consider a Class C network 200.100.100.0. and divide it into 10 subnets, according the following requirements...
Consider a Class C network 200.100.100.0. and divide it into 10 subnets, according the following requirements of number of hosts on each subnet. Draw a diagram clearing labelling each subnet with its name (i.e. A, B, C etc.) and subnet ID. (Use variable length subnet mask) 30 Hosts 12 Hosts 28 Hosts 10 Hosts 25 Hosts 25 Hosts 30 Hosts 5 Hosts 15 Hosts 10 Hosts
Consider a Class B network 180.60.0.0, subdivide this network into 4 subnets, and find A IP...
Consider a Class B network 180.60.0.0, subdivide this network into 4 subnets, and find A IP address on each Subnet B Subnet Mask for each Subnet C Broadcast address for each Subnet. D Maximum possible number of hosts in the whole network
answer as soon as possible . Adam insurance company wants to get license to operate as...
answer as soon as possible . Adam insurance company wants to get license to operate as a Takaful insurance provider. Discuss the process of getting registered for a Takaful product under Insurance Ordinance 2000. Also list the possible options that the company has regarding the products it can offer.
You have leased a Class C network whose network ID is 204.188.89.0. You need to divide...
You have leased a Class C network whose network ID is 204.188.89.0. You need to divide it into three subnets to correspond to three different departments in your organization. For each of the four subnets enter the usable Host Address range: NOTE: enter the host address range using the following format 0.0.0.0-0.0.0.0 Notice the single dash between each IP address. Host addresses for the first subnet: Host addresses for the second subnet: Host addresses for the third subnet: Host addresses...
A company wants to purchase a new network file server for its wide-area computer network. The...
A company wants to purchase a new network file server for its wide-area computer network. The server costs $75,000, and will be completely obsolete in three years and worthless. If the company purchases the server, it can borrow the money at 10% and the server will be depreciated straight line to zero over three years, If the company leases the equipment they will make payments of $27,000 per year, payable at the end of each of the next three years....
On a Class C network, how many hosts per subnet will you get if you have...
On a Class C network, how many hosts per subnet will you get if you have a subnet mask of 255.255.255.240. On how many subnets was divided this class C address? Show your calculations
Company XYZ owns a social network web site dedicated for wind surfers. They plan to launch...
Company XYZ owns a social network web site dedicated for wind surfers. They plan to launch a new online ad delivery and management service web site that will be coupled with their existing social network platform. The online ad management service will enable them to accept online orders for online ads from advertisers. The system will also deliver the ads to the main social network site. The ads will be displayed on the social network site but the content of...
Company XYZ owns a social network web site dedicated for wind surfers. They plan to launch...
Company XYZ owns a social network web site dedicated for wind surfers. They plan to launch a new online ad delivery and management service web site that will be coupled with their existing social network platform. The online ad management service will enable them to accept online orders for online ads from advertisers. The system will also deliver the ads to the main social network site. The ads will be displayed on the social network site but the content of...
C++ Consider a class Movie that information about a movie. The class has the following attributes:...
C++ Consider a class Movie that information about a movie. The class has the following attributes: • The movie name • The MPAA rating (for example, G, PG, PG-13, R) • Array of size 5 called Ratings, each index will hold the following. [0] The number of people that have rated this movie as a 1 (Terrible) [1] The number of people that have rated this movie as a 2 (Bad) [2] The number of people that have rated this...
Write C++ program Consider the following SimpleString class: class simpleString {     public:          simpleString( );...
Write C++ program Consider the following SimpleString class: class simpleString {     public:          simpleString( );                                 // Default constructor          simpleString(int mVal );                    // Explicit value constructor          ~simpleString() { delete [ ] s;}          // Destructor void readString();                              // Read a simple string          void writeString() const;                    // Display a simple string char at(int pos) const;                       // Return character at (pos)          int getLength() const;                        // Return the string length          int getCapacity() const;...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT