Skip to content

Commit

Permalink
firewalld service template added
Browse files Browse the repository at this point in the history
  • Loading branch information
xpbe0 committed Apr 22, 2020
1 parent 11a79fe commit 3e8f8e1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions resource/firewalld/service/istatserver.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<service>
<short>istatserver</short>
<description>iStat Server is a system monitoring daemon that is used in conjunction with iStat View.</description>
<port protocol="tcp" port="5109"/>
</service>

1 comment on commit 3e8f8e1

@xpbe0
Copy link
Author

@xpbe0 xpbe0 commented on 3e8f8e1 Apr 22, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

firewall public zone re-configuration example:

$> cat /etc/firewalld/zones/public.xml
<?xml version="1.0" encoding="utf-8"?>
<zone>
  <short>Public</short>
  <description>For use in public areas. You do not trust the other computers on networks to not harm your computer. Only selected incoming connections are accepted.</description>
  <service name="ssh"/>
  <service name="dhcpv6-client"/>
  <service name="http"/>
  <service name="https"/>
  <service name="istatserver"/>
</zone>
$> firewall-cmd --reload

Please sign in to comment.