Firewalld: Difference between revisions

From DWIKI
mNo edit summary
Line 13: Line 13:
  firewall-cmd --zone=public --add-service=https
  firewall-cmd --zone=public --add-service=https
  firewall-cmd --permanent --zone=public --add-service=https
  firewall-cmd --permanent --zone=public --add-service=https
==add allow source to service==
firewall-cmd --service=ssh --add-source=1.2.3.4


==add port==
==add port==

Revision as of 16:31, 25 January 2024

Redhat firewall interface

Links

HOWTO

show rules

firewall-cmd --list-all

add service

firewall-cmd --zone=public --add-service=https
firewall-cmd --permanent --zone=public --add-service=https

add allow source to service

firewall-cmd --service=ssh --add-source=1.2.3.4

add port

firewall-cmd --zone=public --add-port=5000/tcp
firewall-cmd --permanent --zone=public --add-port=5000/tcp

or

firewall-cmd --permanent --zone=public --add-rich-rule='rule family="ipv4" source address="1.2.3.4/32" port protocol="tcp" port="4567" accept'


delete rich rule

--delete-rich-rule same as --add-rich-rule


zones

Create zone

firewall-cmd --permanent --new-zone=myzone
  1. really?
firewall-cmd --reload
firewall-cmd --runtime-to-permanent

Add port to zone

https://firewalld.org/documentation/howto/add-a-service.html