Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
systems:firewalld [2019/08/24 10:44]
eServices Greece
systems:firewalld [2020/04/13 06:41] (current)
eServices Greece
Line 7: Line 7:
  
 ===== SNMPD ===== ===== SNMPD =====
-==== Create Profile ====+=== Create Profile ===
 <sxh bash> <sxh bash>
 vim /etc/firewalld/services/snmp.xml vim /etc/firewalld/services/snmp.xml
Line 21: Line 21:
 </sxh> </sxh>
  
-==== Add Rule ====+=== Add Rule ===
 <sxh bash>firewall-cmd --reload <sxh bash>firewall-cmd --reload
 firewall-cmd --zone=public --add-service snmp --permanent firewall-cmd --zone=public --add-service snmp --permanent
Line 30: Line 30:
 <sxh bash>firewall-cmd --add-service=cockpit <sxh bash>firewall-cmd --add-service=cockpit
 firewall-cmd --add-service=cockpit --permanent</sxh> firewall-cmd --add-service=cockpit --permanent</sxh>
 +
 +===== Allow traffic through bridge =====
 +<sxh>firewall-cmd --permanent --direct --passthrough ipv4 -I FORWARD -i vbr0 -j ACCEPT
 +firewall-cmd --permanent --direct --passthrough ipv4 -I FORWARD -o vbr0 -j ACCEPT
 +firewall-cmd --reload</sxh>
 +
 +===== http/s =====
 +=== By Service name ===
 +<sxh>firewall-cmd --zone=public --permanent --add-service=http
 +firewall-cmd --zone=public --permanent --add-service=https
 +firewall-cmd --reload</sxh>
 +
 +=== By Port ===
 +<sxh>
 +firewall-cmd --permanent --add-port=80/tcp
 +firewall-cmd --permanent --add-port=443/tcp
 +firewall-cmd --reload</sxh>