Some checks failed
Test / test (push) Has been cancelled
Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
505 B
PowerShell
14 lines
505 B
PowerShell
# Setup Firewall Zones with Inter-VLAN Default Deny
|
|
|
|
param(
|
|
[string]$OpenWrtIP = "10.10.60.100"
|
|
)
|
|
|
|
Write-Host "=========================================" -ForegroundColor Cyan
|
|
Write-Host "Firewall Zones Configuration" -ForegroundColor Cyan
|
|
Write-Host "=========================================" -ForegroundColor Cyan
|
|
|
|
Write-Host "`nFirewall zones with inter-VLAN default deny policy." -ForegroundColor Yellow
|
|
Write-Host "See OpenWrt firewall documentation for configuration." -ForegroundColor Yellow
|
|
|