{% extends "base.html" %} {% set active_page = 'nfs' %} {% block title %}NFS Manager — vSphere Backup Manager{% endblock %} {% block head %} {% endblock %} {% block content %}
NFS / CIFS Manager
Manage network storage mounts used as backup targets
🔄 Refresh
{% if not is_linux %}
⚠ NFS management requires Linux. This server is running on {{ request.environ.get('SERVER_SOFTWARE', 'non-Linux OS') }}. Mount/unmount operations will work on the deployed Linux server.
{% endif %}

📡 Mounted Shares {% if mounts %} {{ mounts|length }} active {% endif %}

{% if mounts %}
{% for m in mounts %}
{{ m.device }}
→ {{ m.mountpoint }}
{{ m.fstype | upper }}
{% if m.total_gb %}
{{ m.used_gb }} GB used {{ m.pct_used }}%
{{ m.total_gb }} GB
Total
{{ m.free_gb }} GB
Free
{{ m.used_gb }} GB
Used
{% endif %}
📋 Use as Target
{% endfor %}
{% else %}
📡

No NFS shares currently mounted.

{% endif %}

➕ Mount New Share

{% if not is_linux %} Disabled on non-Linux {% endif %}
{% endblock %}