Network Access Control Lists (ACLs)
Learn to design firewall rules using Layer 3 and Layer 4 metrics to secure enterprise subnets.
Your task is to configure the router ACL rules controlling traffic flowing into the Finance Subnet. You must satisfy the following security policies:
- Allow Finance workstations (IP range:
10.0.1.0/24) to access the Finance Subnet. - Allow external mail traffic on port 25 (SMTP) and web traffic on port 443 (HTTPS) to flow through.
- Block all traffic coming from the Human Resources subnet (
10.0.2.0/24) and Development subnet (10.0.3.0/24) to the Finance Subnet. - Enforce an implicit deny rule at the lowest priority.
ACL Rule Configurator
Define a new rule and add it to the ACL table below. Rules are evaluated top-to-bottom.
Network Traffic Simulator
Windows File System Permissions (NTFS)
Understand the Windows Access Control Model: security groups, inheritance, and permission overrides.
You need to configure the NTFS permissions for the directory D:\EnterpriseShare\Confidential. You have the following requirements:
- Disinherit permissions from parent directory (
D:\EnterpriseShare) to start with a clean state. - Allow
Finance-Groupto have full Read, Write, and Modify permissions, but restrict them from Full Control. - Allow
HR-Groupto only Read files. Ensure they cannot Write or Modify files. - Deny all access to the group
All-Employees.
File Explorer
Group or user names:
Linux Permissions & Ownership
Master standard Linux user/group/others (ugo) permissions, symbolic & octal chmod, chown, and chgrp.
You need to secure a critical script in a shared project directory /var/www/html:
- The file
index.htmlmust have read/write for owner, read-only for group, and no access for others. - The deployment script
deploy.shmust have read/write/executable permissions for the owner, read/executable for the group, and no access for others. - Set the owner of both files to
web-admin. - Set the group of both files to
developers.
File Permissions View
Quick Linux Octal Guide
Type "help" to list available commands. Task: Secure the files according to policy requirements.