The Core Filesystem (/asap3/<facility>/gpfs) is accessible via several protocols. Accessing the Core filesystem is only possible from within the DESY network and always requires a valid DESY account.
Access Methods
Native GPFS - via Maxwell
The Core filesystem is mounted on the Maxwell Analysis cluster. For more information, see Maxwell for Photon Science
SMB - For Windows, macOS and Linux users
For Windows, macOS and Linux users from Office networks, SMB is the recommended way to access the Core filesystem.
Linux desktop users should also access the Core filesystem via SMB, as it does not require any root permissions or configuration on the clients.
This is currently the only way to mount the Core filesystem on a DESY green desktop installation.
Each individual facility or research group has its own share:
Facility | Path on GPFS | Share Name |
---|---|---|
PETRA III | /asap3/petra3/gpfs |
|
FLASH | /asap3/flash/gpfs | \\asap3.desy.de\flash-core |
Special Instruments | /asap3/spec.instruments/gpfs | \\asap3.desy.de\spec.instruments-core |
Research Group | ||
FS-FLASH-O | /asap3/fs-flash-o/gpfs | \\asap3.desy.de\fs-flash-o-core |
NFSv4 - For Linux users
While SMB is still the recommended way to access the Core filesystem, certain use-cases require an NFS mount.
For this purpose, an NFSv4 export with and without Kerberos is available.
Facility | Path on GPFS | NFS Export |
---|---|---|
PETRA III | /asap3/petra3/gpfs |
|
FLASH | /asap3/flash/gpfs | asap3.desy.de:/asap3/flash/gpfs |
Special Instruments | /asap3/spec.instruments/gpfs | asap3.desy.de:/asap3/spec.instruments/gpfs |
Research Group | ||
FS-FLASH-O | /asap3/fs-flash-o/gpfs | asap3.desy.de:/asap3/fs-flash-o/gpfs |
Restricted Mount Access
Access to the NFSv4 exports are either restricted by IP subnet or netgroups from LDAP.
For PETRA III, the following subnets are allowed to mount the Core filesystem with kerberos:
- 131.169.38.0/24
- 131.169.39.0/24
- 131.169.45.0/24
- 131.169.66.0/24
- 131.169.221.0/24
- 131.169.225.0/24
- 131.169.232.0/24
- 131.169.33.0/24
- 192.168.138.0/24
- 131.169.65.0/24
- 192.168.132.0/22
- 192.168.37.0/24
- 192.168.56.0/22
For FLASH, hosts in the LDAP netgroup a3-flash-core-krb5-hosts are allowed to mount the core filesystem.
To display the hosts, you can use ldapsearch on pal.desy.de: ldapsearch -x cn=a3-flash-core-krb5-hosts
Mounting via NFSv4 with Kerberos
Mounting the Core filesystem via Kerberos requires root privileges on the client machine.
mount with krb5
mount -o nfsvers=4.0,sec=krb5,hard <NFS Export> <local directory>
Example
mount -o nfsvers=4.0,sec=krb5,hard asap3.desy.de:/asap3/flash/gpfs /asap3/flash/gpfs
Additional configuration and a kerberos keytab is required on the client machine, this out of scope for this documentation.
Mounting via NFSv4 without Kerberos
Mounting the Core filesystem without Kerberos requires root privileges. Due to the security implications for this type of mount, this must be explicitly requested, as the host will be included in a whitelist.
Please contact FS-EC (fs-ec@desy.de) in order to be included in the whitelist.
mount without krb5
mount -o nfsvers=4.0,sec=sys,hard <NFS Export> <local directory>
Example
mount -o nfsvers=4.0,sec=sys,hard asap3.desy.de:/asap3/flash/gpfs /asap3/flash/gpfs
Additional configuration is required on the client machine, this is out of scope for this documentation.