Posted On March 31, 2019

SonicWall: How to Set Internet Restrictions for Specific Computers

kimconnect 0 comments
blog.KimConnect.com >> Networking , Windows >> SonicWall: How to Set Internet Restrictions for Specific Computers
Set their MACs to address .  Then, use firewall rules to restrict outgoing communication:
 
Add user1 and user2 MAC’s as address objects and combine in an object group named “Internet Restricted Computers.”
 
Add *.site1.com and *.site2.com domain names as objects, combine in an object group named “Whitelisted Websites.”
 
Add deny all for user group from LAN > WAN and then add allow whitelisted site group for user group LAN > WAN (whitelist rule higher priority than deny all).

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Detecting Windows Antivirus

One of the initial tasks of a Windows user is to determine whether a computer…

How to Set PowerShell Window and Prompt Title or Label

Have you ever wondered about changing the boring PS C:\Windows\system32> whenever a new window is…

PowerShell: 1-liner to obtain SSID and Password of Wireless Profiles on a Windows Machine

$profileName='Frontier0000'netsh wlan show profile "name=$profileName" key=clear|select-string "Key Content"# Sample outputKey Content : somepassword PS C:\Windows\system32>…