List three recommendations to help secure a wireless network.

What will be an ideal response?

Here are a number of recommendations to help secure your wireless network:
·      Mandate the use of WPA2 and strong passkeys to encrypt wireless communications and to provide a basic layer of authentication.
·      Employ wireless IDS to help spot rogue access points, evil twins, wardriving, and other probes of the network.
·      Use mutual authentication methods - like EAP-TLS - in order to provide a level of trust by authenticating not only the client to server but also the server to the client.
·      For an added security layer, ensure that wireless connections authenticate via a VPN prior to gaining access to the wired network resources.

Computer Science & Information Technology

You might also like to view...

Which of the following would not be an example of an unbound control?

A) Rectangle B) Title of the report C) Lastname field D) Graphic line

Computer Science & Information Technology

Analyze the following code:

``` ArrayList list = new ArrayList(); list.add("Beijing"); list.add("Tokyo"); list.add("Shanghai"); list.set(3, "Hong Kong"); ``` a. The last line in the code causes a runtime error because there is no element at index 3 in the array list. b. The last line in the code has a compile error because there is no element at index 3 in the array list. c. If you replace the last line by list.add(3, "Hong Kong"), the code will compile and run fine. d. If you replace the last line by list.add(4, "Hong Kong"), the code will compile and run fine.

Computer Science & Information Technology