Skip to content

Commit

Permalink
add ceph services
Browse files Browse the repository at this point in the history
Ceph's OSD and MDS daemons listen on TCP ports 6800 through 7300 by
default.

The IANA-registered port for the Ceph MON daemon is 3300, although
legacy MON daemons default to 6789.

Add the "ceph" and "ceph-mon" service definitions for Ceph.
  • Loading branch information
ktdreyer committed Jul 10, 2015
1 parent d882d4a commit 2c9d4c1
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions config/Makefile.am
Expand Up @@ -75,6 +75,8 @@ EXTRA_DIST = \
services/amanda-k5-client.xml \
services/bacula-client.xml \
services/bacula.xml \
services/ceph.xml \
services/ceph-mon.xml \
services/dhcpv6-client.xml \
services/dhcpv6.xml \
services/dhcp.xml \
Expand Down
7 changes: 7 additions & 0 deletions config/services/ceph-mon.xml
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<service>
<short>ceph-mon</short>
<description>Ceph is a distributed object store and file system. Enable this option to support Ceph's Monitor Daemon.</description>
<port protocol="tcp" port="3300"/>
<port protocol="tcp" port="6789"/>
</service>
6 changes: 6 additions & 0 deletions config/services/ceph.xml
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<service>
<short>ceph</short>
<description>Ceph is a distributed object store and file system. Enable this option to support Ceph's Object Storage Daemons (OSD) or Metadata Server Daemons (MDS).</description>
<port protocol="tcp" port="6800-7300"/>
</service>

0 comments on commit 2c9d4c1

Please sign in to comment.