Ich weiß, dass es sehr einfach ist, das Standardverhalten von ufw festzulegen, z. B. ufw default deny
aber wie überprüfe ich die Standardaktion POLICY? Es wird nicht angezeigt ufw status
.
8
Versuchen Sie ufw status verbose
:
root@cmp:~# ufw status verbose
Status: active
Logging: on (low)
Default: deny (incoming), allow (outgoing), disabled (routed)
New profiles: skip
Jetzt ändere ich es, um Folgendes zu ermöglichen:
root@cmp:~# ufw default allow
Default incoming policy changed to 'allow'
(be sure to update your rules accordingly)
Der Status wird entsprechend wiedergegeben. Die Standardeinstellung wurde geändert, um Folgendes zu ermöglichen:
root@cmp:~# ufw status verbose
Status: active
Logging: on (low)
Default: allow (incoming), allow (outgoing), disabled (routed)
New profiles: skip