nfs-storage

Configure NFS for network file sharing.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "nfs-storage" with this command: npx skills add bagelhole/devops-security-agent-skills/bagelhole-devops-security-agent-skills-nfs-storage

NFS Storage

Configure NFS for network file sharing.

Server Configuration

Install

apt install nfs-kernel-server

Configure exports

/etc/exports

/data 10.0.0.0/24(rw,sync,no_subtree_check,no_root_squash) /shared *(ro,sync,no_subtree_check)

Apply changes

exportfs -ra

Start service

systemctl enable --now nfs-kernel-server

Client Configuration

Install

apt install nfs-common

Mount

mount -t nfs server:/data /mnt/data

/etc/fstab

server:/data /mnt/data nfs defaults,_netdev 0 0

Kubernetes NFS

apiVersion: v1 kind: PersistentVolume metadata: name: nfs-pv spec: capacity: storage: 100Gi accessModes: - ReadWriteMany nfs: server: nfs-server.example.com path: /data

Best Practices

  • Use proper export options

  • Implement firewall rules

  • Monitor NFS performance

  • Use NFSv4 for security

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Security

sops-encryption

No summary provided by upstream source.

Repository SourceNeeds Review
Security

linux-administration

No summary provided by upstream source.

Repository SourceNeeds Review
Security

linux-hardening

No summary provided by upstream source.

Repository SourceNeeds Review