# Setting Up Shared Storage Volume

If you have a shared network volume like a NAS you can mount it directly in edgeLinux allowing you to read and write data to it. This is especially useful if you want to use it as a backup location for your antlets or simply want to access the data on the drive. These commands require the attached storage to be shared via smb. Most shared network volumes based on Linux or Windows use smb by default, but it may need to be enabled.

First, make sure you have a directory on your edgeLinux server where you can mount your shared network volume. To create one, simply type `mkdir -p /mnt/networkshare`. You can choose any path and folder name you'd like.

Once you have the folder on your Antsle, you'll also need the IP address of your network share plus the user and password to log in.

For our example, let's assume the IP address of your network share is 192.168.178.50 and your username simply user.

With that information, you can substitute the data in the command below:

`mount -t cifs -o username=user,password='P@sswrd123!' //192.168.178.50/remote-path /mnt/networkshare`

Make sure to substitute 'user' with the share's (e.g. NAS) username.  Use single quotes around the password.  Set the local path `/mnt/networkshare` to any (empty) directory on your Antsle.

![](https://2204297924-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LykQfPew0YJZLWKBUYz%2F-M-BeOWxyGyhA-Qq1Jb3%2F-M-BeV9kR_KgbNPzzukJ%2Fnetworkshare-backups.png?alt=media\&token=4b963fe9-9421-4016-8add-e1639926f07c)

\
After running the command, the drive and it's contents will be available under the specified folder (in the example `/mnt/networkshare`). Now you can use the share to automatically save backups using antMan.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.antsle.com/system/access-a-network-share.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
