2015-01-12 10:45:34 -05:00
|
|
|
# firewall-cmd
|
|
|
|
|
2021-05-20 16:13:41 -04:00
|
|
|
> The firewalld command-line client.
|
2024-09-21 15:07:48 +02:00
|
|
|
> View and adapt the runtime or permanent firewall configuration state.
|
2021-07-09 16:45:55 +02:00
|
|
|
> More information: <https://firewalld.org/documentation/man-pages/firewall-cmd>.
|
2015-01-12 10:45:34 -05:00
|
|
|
|
2024-09-21 15:07:48 +02:00
|
|
|
- View all available firewall zones and rules in their runtime configuration state:
|
2015-01-12 10:45:34 -05:00
|
|
|
|
2024-09-21 15:07:48 +02:00
|
|
|
`firewall-cmd --list-all-zones`
|
2015-01-12 10:45:34 -05:00
|
|
|
|
2020-03-03 18:21:21 +01:00
|
|
|
- Permanently move the interface into the block zone, effectively blocking all communication:
|
|
|
|
|
|
|
|
`firewall-cmd --permanent --zone={{block}} --change-interface={{enp1s0}}`
|
|
|
|
|
2021-01-31 14:05:18 -03:00
|
|
|
- Permanently open the port for a service in the specified zone (like port 443 when in the `public` zone):
|
2015-01-12 10:45:34 -05:00
|
|
|
|
|
|
|
`firewall-cmd --permanent --zone={{public}} --add-service={{https}}`
|
|
|
|
|
2021-01-31 14:05:18 -03:00
|
|
|
- Permanently close the port for a service in the specified zone (like port 80 when in the `public` zone):
|
2015-01-12 10:45:34 -05:00
|
|
|
|
|
|
|
`firewall-cmd --permanent --zone={{public}} --remove-service={{http}}`
|
|
|
|
|
2024-09-21 15:07:48 +02:00
|
|
|
- Permanently forward a port for incoming packets in the specified zone (like port 443 to 8443 when entering the `public` zone):
|
2020-03-03 18:21:21 +01:00
|
|
|
|
2024-09-21 15:07:48 +02:00
|
|
|
`firewall-cmd --permanent --zone={{public}} --add-rich-rule='rule family="{{ipv4|ipv6}}" forward-port port="{{443}}" protocol="{{udp|tcp}}" to-port="{{8443}}"'`
|
2020-03-03 18:21:21 +01:00
|
|
|
|
2024-09-21 15:07:48 +02:00
|
|
|
- Reload firewalld to lose any runtime changes and force the permanent configuration to take effect immediately:
|
2015-01-12 10:45:34 -05:00
|
|
|
|
|
|
|
`firewall-cmd --reload`
|
2024-09-21 15:07:48 +02:00
|
|
|
|
|
|
|
- Save the runtime configuration state to the permanent configuration:
|
|
|
|
|
|
|
|
`firewall-cmd --runtime-to-permanent`
|
|
|
|
|
|
|
|
- Enable panic mode in case of Emergency. All traffic is dropped, any active connection will be terminated:
|
|
|
|
|
|
|
|
`firewall-cmd --panic-on`
|