Last active 1731285270

remove_unused_ufw_rules.sh Raw
1#!/bin/bash
2# 获取所有已允许的 UFW 端口
3allowed_ports=$(sudo ufw status | grep -oP '^\d+')
4
5for port in $allowed_ports; do
6 # 检查端口是否在监听
7 if ! sudo ss -tuln | grep -q ":$port\s"; then
8 echo "Port $port is not in use. Removing allow rule..."
9 sudo ufw delete allow "$port"
10 else
11 echo "Port $port is in use."
12 fi
13done
14