Changes between Version 16 and Version 17 of Csle2022/Agenda/FW


Ignore:
Timestamp:
Nov 24, 2022, 9:51:41 AM (2 years ago)
Author:
geethike
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Csle2022/Agenda/FW

    v16 v17  
    267267Anywhere                   ALLOW       203.0.113.101
    268268}}}
     269You can also allow connections from a whole subnet by providing the corresponding subnet mask for a host, such as 203.0.113.0/24.
     270
     271'''Delete UFW Rule'''
     272To delete a rule that you previously set up within UFW, use '''''ufw delete''''' followed by the rule (allow or deny) and the target specification. The following example would delete a rule previously set to allow all connections from an IP address of 203.0.113.101:
     273{{{
     274sudo ufw delete allow from 203.0.113.101
     275}}}