Puppet Class: nftables::rules::ceph
- Defined in:
- manifests/rules/ceph.pp
Overview
Ceph is a distributed object store and file system. Enable this to support Ceph’s Object Storage Daemons (OSD), Metadata Server Daemons (MDS), or Manager Daemons (MGR).
| 4 5 6 7 8 9 | # File 'manifests/rules/ceph.pp', line 4
class nftables::rules::ceph {
  nftables::rule {
    'default_in-ceph':
      content => 'tcp dport 6800-7300 accept comment "Accept Ceph OSD, MDS, MGR"',
  }
} |