MTCNA Class 06: Security Management
Class 06: Security Management Objectives - Firewall rules & port blocking Site blocking VPN/Tunnels overview PPPoE system Load balancing 1. Firewall Rules & Port Blocking (Baseline Security) Step 1: Basic Firewall Protection /ip firewall filter # Allow established & related traffic add chain=input connection-state=established,related action=accept comment="Allow established" # Drop invalid packets add chain=input connection-state=invalid action=drop comment="Drop invalid" # Allow LAN access to router add chain=input src-address=192.168.0.0/16 action=accept comment="Allow LAN" # Drop all other access (WAN protection) add chain=input in-interface=WAN action=drop comment="Block WAN access" Step 2: Block Dangerous Ports (Example) # Block Telnet (23), FTP (21), SMB (445) add chain=forward protocol=tcp dst-port=21,23,445 action=drop comment="Block risky ports" # Block Torrent ports (common range) add chain=forward protocol=tcp ...