Question

In: Computer Science

Your ISP has assigned you the following public IP address 196.92.16.64/28. Your router's address is 196.92.16.65/28....

Your ISP has assigned you the following public IP address 196.92.16.64/28. Your router's address is 196.92.16.65/28.

(a) How many hosts can you assign a public address?

(b) What will be the range of public addresses?

(c) If you have 200 hosts of your network. Explain how you would provide Internet Access to all the host concurrently using NAT.

(d) You have 26 hosts divided into 2 groups in your network. Explain how you would provide Internet access to all the host on alternate days using DHCP.

Solutions

Expert Solution

Network           Subnet           size             Range            Broadcast
196.92.16.64   255.255.255.240       14   196.92.16.65 to 196.92.16.78   196.92.16.79

Answer 1
*********
196.92.16.65 is assigned to router so remaining 13 public ips can be allocated.

Answer 2
************

.

Answer 3
**********
we can create DHCP pool using server or router in whcich two different networks canbe merged and we will use class c address for NAT to avoid ip wastage as we need 200 hosts only and class C will give us 254 usable hosts.

eg 192.168.1.0 255.255.255.0

Answer 4
*********
suppose we have two NAT groups

Network           Subnet         size                Range              Broadcast
192.168.1.0   255.255.255.224       30   192.168.1.1 to 192.168.1.30      192.168.1.31
192.168.1.32   255.255.255.224   30   192.168.1.33 to 192.168.1.62   192.168.1.63

if you have any doubt then please ask me without any hesitation in the comment section below , if you like my answer then please thumbs up for the answer , before giving thumbs down please discuss the question it may possible that we may understand the question different way and we can edit and change the answers if you argue, thanks :)


Related Solutions

Problem 1. Network Address Suppose an ISP has the following IP address block: 130.12.128.0/23 a. Assume...
Problem 1. Network Address Suppose an ISP has the following IP address block: 130.12.128.0/23 a. Assume that the ISP wants to divide its address block (130.12.128.0/23) into two equal-sized contiguous address blocks, and give one of these address blocks to its customers (C1 and C2). Provide network addresses (of the form a.b.c.d/x) for C1 and C2. b. Now let’s assume that the ISP wants to divide its address block (130.12.128.0/23) into four equal-sized contiguous address blocks, and give one of...
Your ISP has given you the following CIDR address 196.92.21.0/24. This address will be split among...
Your ISP has given you the following CIDR address 196.92.21.0/24. This address will be split among 3 facilities each with its own subnet consisting of 64 addresses each. Out of the remaining 64 addresses 32 will be split into two subnets for the administrative and accounting departments with 16 addresses each. The remaining addresses will be allocated for guests' access. Write the address range for each subnet in CIDR notation. Show all your workings.
A host (computer) with networking capabilities is assigned a MAC address AB1CD22EF33 and a public IP...
A host (computer) with networking capabilities is assigned a MAC address AB1CD22EF33 and a public IP address 192.92.21.5/24. The gate way is connected to your ISP with optic cables. The ISP public address is 16.12.11.253/30. The MAC address of your ISP is 112233ABCDEF. a. Explain why both a MAC and an IP address are assigned to a host in the network. b. Clearly differentiate between public & private Internet address. c. Explain the meaning of the CIDR address 196.92.21.5/24. d....
You notice a printer on your network has the IP address 198.75.12.34 and subnet mask 255.255.255.248....
You notice a printer on your network has the IP address 198.75.12.34 and subnet mask 255.255.255.248. What is the network address to which this printer belongs? A router interface on one of your subnets has the IP address 54.187.69.45 and prefix length /25. What would be the broadcast address used for this subnet?
[Only answer part 2] part 1: What is the public IP address of your machine? How...
[Only answer part 2] part 1: What is the public IP address of your machine? How can you know your public IP address of the machine? (Hint: ask Google.) How does a website know your public IP address? Is it different from the IP address shown on the network interface obtained by ifconfig? part2: Why are they different? (Hint: NAT.) What does this NAT thing do (briefly explain it in one sentence)? Who did it? (Hint: the VirtualBox software may...
The requirements for your assignment are: Decode the IP address 172.16.31.255 /20 Determine the following: Subnet...
The requirements for your assignment are: Decode the IP address 172.16.31.255 /20 Determine the following: Subnet mask Multiplier Network number Subnetwork addresses Broadcast addresses This is what I came up with. Let me know if it's right or what I did wrong. Please explain. IP Address 172.16.31.255 10101100.00010000.00011111.11111111 Subnet mask 11111111.11111111.11110000.00000000 255.255.240.0 Multiplier 16 Network Number 172.16.31.0 Subnetwork Addresses    Subnetwork Addresses Broadcast Addresses 172.16.31.0 172.16.31.15 172.16.31.16 172.16.31.31 172.16.31.32 172.16.31.47 172.16.31.48 172.16.31.63 172.16.31.64 172.16.31.79 172.16.31.80 172.16.31.95 172.16.31.96 172.16.31.111 172.16.31.112 172.16.31.127 172.16.31.128...
What is the network address if given this IP address and the following subnet mask?  Please note...
What is the network address if given this IP address and the following subnet mask?  Please note that the network may be different if the subnet mask is different. IP address 178.47.188.176 How many network bits if the following subnet masks? 255.254.0.0 255.255.252.0 255.255.255.248    4. 255.128.0.0     
Short description of your assigned challenge Describe the innovation you researched to address the challenge The...
Short description of your assigned challenge Describe the innovation you researched to address the challenge The result (what did it prove?) How/Why it impacts or supports the challenge the challenge is "make Solar energy economical"
You are currently troubleshooting a networking issue. You have narrowed down the IP address that is...
You are currently troubleshooting a networking issue. You have narrowed down the IP address that is causing the issue, but you need to know the host name of the computer. What command would give you this information? The internet browser is unable to find the host you are trying to reach. What command(s) should you use to try to rectify the situation?
This violates the ISP principle in SOLID, can someone explain why and refactor? Thank you! public...
This violates the ISP principle in SOLID, can someone explain why and refactor? Thank you! public interface IGesture { void OnClick(); void OnSwipe(); void OnDoubleClick(); } public class LaunchButton : IGesture { public void OnClick() { //Launch nuclear missiles } public void OnDoubleClick() { throw new NotImplementedException(); } public void OnSwipe() { throw new NotImplementedException(); } }
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT