Monday, 20 January 2020

networking - Restrict Computer from Connecting to Outside Wireless Networks


My application requires a private connection between client computers and a server computer locally. The client computer shouldn't be allowed to connect to outside wireless network.


To be clear, the question is how to prevent client computers from connecting to outside network.


I'm thinking of two options:




  1. Use (or write) a software that do the job, i.e, a software that requires account/password for every new wireless connection. It's similar to parent-control software. Unfortunately, at the moment I couldn't find such software. Do you have any suggestions for this?




  2. Use a guest account on client computers, but I'm not sure if it's feasible.




Any help please?




Here's the application: A local exam for classroom.


The classroom is fully equipped with LAPTOPs (Windows XP/7); 1 for teacher and n for students.


The (student) computers must be connected to a server (teacher) to feed questions and (possibly) be graded. The (student) computers and teacher computer are on a local LAN network.


The students is not allowed to connect to outside networks. But it's not just "not allowed", because I have to prevent such things happening (prevent students connecting to outside). Otherwise, they could connect outside and Google the questions.



Answer



You could just set manual IP addresses on the laptops and leave out the default gateway, then use netsh or group policy to add filters to only allow the connection to a certain wireless network and none else.


netsh wlan add filter permission=allow ssid=yournetworkssid networktype=infrastructure


netsh wlan add filter permission=denyall networktype=infrastructure


netsh wlan add filter permission=denyall networktype=adhoc


Source http://social.technet.microsoft.com/Forums/en-US/w7itpronetworking/thread/7130f1a5-70fd-429f-8d41-575085489bd1


No comments:

Post a Comment

How can I VLOOKUP in multiple Excel documents?

I am trying to VLOOKUP reference data with around 400 seperate Excel files. Is it possible to do this in a quick way rather than doing it m...