Question

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 correct broadcast address.

Broadcast address for the first subnet:
Broadcast address for the second subnet:
Broadcast address for the third subnet:
Broadcast address for the fourth subnet:

Homework Answers

Answer #1

IP Address:

An IP address is an identifier or label used to identify a machine on the internet or a particular network. Each of the devices on the internet must have an IP address for identification.

The given IP address is:

204.188.89.0

The above address belongs to class C because the first octet range of class C is: 192 to 223.

The netmask of class C is:

255.255.255.0

To divide into three subnets, we need to reserve two more bits for subnetting.

The subnet mask will be:

255.255.255.192

The broadcast address of the subnet is the last address.

The broadcast address for the first subnet is = 204.188.89.63

The broadcast address for the second subnet is = 204.188.89.127

The broadcast address for the third subnet is = 204.188.89.191

The broadcast address for the fourth subnet is = 204.188.89.255

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Partition (subnet) a network You are a network administrator. You are given this network: 201.20.30.160/255.255.255.224 Partition...
Partition (subnet) a network You are a network administrator. You are given this network: 201.20.30.160/255.255.255.224 Partition it into three subnets. The first subnet should contain the first half of the given network. The second subnet should contain the third quarter of the given network. The third should contain the fourth quarter of the given network. Use the same notation as given above to identify the overall network, to identify/express its three component subnets. Annotate this page with the three subnets'...
In a class C subnet, we know the IP address of one of the hosts and...
In a class C subnet, we know the IP address of one of the hosts and the subnet mask as given below: IP Address: 198.48.82.176 Subnet mask: 255.255.255.224 1) What is the first valid host address in the subnet? (in dotted decimal) 2) What is the last valid address in the subnet? (in dotted decimal) 3) What is the subnet network address? (in dotted decimal) 4) What is the subnet broadcast address? (in dotted decimal) 5) What is the number...
Suppose a company received the IP network: 221.163.175.0/16. You want to set up the company’s network...
Suppose a company received the IP network: 221.163.175.0/16. You want to set up the company’s network to limit the number of hosts on each subnet to approximately 60 a. What class of address is this? b. How many subnets are possible? c. How many bits must be borrowed from the host bits to be used for subnet ID?   d, What is the subnet mask? e. How many possible hosts could be on each subnet, assuming the first and last addresses...
You are to create 17 subnets on a class B network with the IP address: 172.20.112.1?...
You are to create 17 subnets on a class B network with the IP address: 172.20.112.1? How many bits do you need to uniquely identify each subnet? (focus on the binary representation more so than the networking aspect of the question) : hint what is the minimum number of bits do you need to represent 17 different entities. (show all steps) Subtract 10 – 7 using 2’s complement (show all steps) Find the two’s complement of the following number:   10110111(show...
1) You need to subnet a network that has 5 subnets, each with at least 16...
1) You need to subnet a network that has 5 subnets, each with at least 16 hosts. Which classful subnet mask would you use? A. 255.255.255.192 B. 255.255.255.224 C. 255.255.255.240 D. 255.255.255.248 2) What is the Subnet Mask corresponding to a shorthand of /27? A.255.255.255.224 B.255.255.255.0 C.255.255.255.240 D.255.255.255.252 Please choose the correct answer, no need to add additional information. Thanks :)
As the network administrator for a growing ISP, you want to make efficient use of your...
As the network administrator for a growing ISP, you want to make efficient use of your network addresses. One of the networks addresses IANA assigned to you is a Class C network of 192.168.88.0. You have decided to use the addresses in this Class C network to satisfy the IP address requirements of 18 corporate customers who need between 20 and 24 addresses each. calculate a subnet mask that meets their needs. List the subnet mask and the first four...
Overview Your assignment is to complete a wireless network design for a small company. You will...
Overview Your assignment is to complete a wireless network design for a small company. You will place a number of network elements on the diagram and label them appropriately. A network diagram is important to communicate the design features of a network between network administrators, system administrators and cyber-security analysts. It helps to create a shared mental model between these different technologists, yet each will have their own perspective on what is important to have documented on the diagram. Please...
consider that you need to set up a serial network, which will have one Master and...
consider that you need to set up a serial network, which will have one Master and four Slaves. Either SPI or I2C can be used. Every second, data has to be distributed, such that one byte is sent to Slave 1, four to Slave 2, three to Slave 3, and four to Slave 4. If the complete data transfer must take not more than 200 us, estimate the minimum clock frequency which is allowable for SPI and I2C. Assume there...
The code I have written runs but I need it us UDP not TCP. Also I...
The code I have written runs but I need it us UDP not TCP. Also I just need someone to check my work and make sure that it works properly. The python code needs to be run with command line so you can add more than one client. The directions: 1. The chat is performed between 2 clients and not the server. 2. The server will first start up and choose a port number. Then the server prints out its...
**[70 pts]** You will be writing a (rather primitive) online store simulator. It will have these...
**[70 pts]** You will be writing a (rather primitive) online store simulator. It will have these classes: Product, Customer, and Store. All data members of each class should be marked as **private** (a leading underscore in the name). Since they're private, if you need to access them from outside the class, you should do so via get or set methods. Any get or set methods should be named per the usual convention ("get_" or "set_" followed by the name of...