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/10/05 18:43]
eServices Greece
systems:firewalld [2020/04/13 06:41] (current)
eServices Greece
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 ===== ===== http/s =====
Line 38: Line 43:
  
 === By Port === === By Port ===
 +<sxh>
 firewall-cmd --permanent --add-port=80/tcp firewall-cmd --permanent --add-port=80/tcp
 firewall-cmd --permanent --add-port=443/tcp firewall-cmd --permanent --add-port=443/tcp
-firewall-cmd --reload+firewall-cmd --reload</sxh>