Skip to content

Commit b349553

Browse files
authored
Update nfsserver.md
Some changes not saved... edited to put them back in.
1 parent e054284 commit b349553

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

docs/guides/file_sharing/nfsserver.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Network File System
33
author: Antoine Le Morvan
4-
contributors: Steven Spencer
4+
contributors: Steven Spencer, Serge
55
---
66
# Network File System
77

@@ -24,8 +24,8 @@ Remote files are mounted in a directory and appear as a local file system. Clien
2424

2525
NFS requires two services to function:
2626

27-
* The `network` service (of course);
28-
* The `rpcbind` service.
27+
* The `network` service (of course)
28+
* The `rpcbind` service
2929

3030
View the status of the services with the command:
3131

@@ -49,8 +49,8 @@ sudo systemctl enable --now nfs-server rpcbind
4949

5050
Installing the NFS service creates two users:
5151

52-
* `nobody`: used for anonymous connections;
53-
* `rpcuser`: for RPC protocol operation.
52+
* `nobody`: used for anonymous connections
53+
* `rpcuser`: for RPC protocol operation
5454

5555
Configuring the firewall is necessary:
5656

@@ -73,25 +73,25 @@ Set up resource shares with the `/etc/exports` file. Each line in this file corr
7373
/share_name client1(permissions) client2(permissions)
7474
```
7575

76-
* **/share_name**: Absolute path of shared directory;
77-
* **clients**: Clients authorized to access resources;
78-
* **(permissions)**: Permissions on resources.
76+
* **/share_name**: Absolute path of shared directory
77+
* **clients**: Clients authorized to access resources
78+
* **(permissions)**: Permissions on resources
7979

8080
Declare machines authorized to access resources with:
8181

8282
* **IP address**: `192.168.1.2`
8383
* **Network address**: `192.168.1.0/255.255.255.0` or CIDR format `192.168.1.0/24`
84-
* **FQDN**: client_*.rockylinux.org: allows FQDNs starting with client_ from the rockylinux.org domain;
85-
* `*` for everybody.
84+
* **FQDN**: client_*.rockylinux.org: allows FQDNs starting with client_ from the rockylinux.org domain
85+
* `*` for everybody
8686

8787
Specification of multiple clients is possible on the same line separated by a space.
8888

8989
### Permissions on resources
9090

9191
There are two types of permissions:
9292

93-
* `ro`: read-only;
94-
* `rw`: read-write.
93+
* `ro`: read-only
94+
* `rw`: read-write
9595

9696
If no right is specified, then the right applied will be read-only.
9797

@@ -177,7 +177,7 @@ Mount the server's NFS share:
177177
$ mount –t nfs 172.16.1.10:/share /mnt/nfs
178178
```
179179

180-
Automation of the mount can happen at system startup the `/etc/fstab` file:
180+
Automation of the mount can happen at system startup with the `/etc/fstab` file:
181181

182182
```
183183
$ sudo vim /etc/fstab

0 commit comments

Comments
 (0)