Identify four network hardening techniques.

What will be an ideal response?

A sampling of network-hardening techniques includes:
Design networks around switches and routers to control who accesses specific portions of a network.
Employ network firewalls and firewalls in operating systems.
Use a star-based network topology for more secure network designs.
Regularly monitor network activity.

Computer Science & Information Technology

You might also like to view...

Using the saved output, describe the time interval between each ARP Request issued by PC1. Describe the method used by ARP to determine the time between retransmissions of an unsuccessful ARP Request. Include relevant data to support your answer.

What will be an ideal response?

Computer Science & Information Technology

Based on the dangling-else discussion state the output for each of the following code snippets when x is 9 and y is 11 and when x is 11 and y is 9. We eliminated the indentation from the following code to make the problem more challenging.

``` if (x < 10) if (y > 10) cout << "*****" << endl; else cout << "#####" << endl; cout << "$$$$$" << endl; ```

Computer Science & Information Technology