Network File System (NFS) allows you to share files between devices on a local network. If you use Xiaomi RedmiBook Pro 8 and need to connect network storage to work with SberBank Online (for example, to store backups or share documents), setting up NFS may be the best solution. However, the process has nuances, from choosing the right version of the protocol to configuring the firewall and access rights.
Many users face difficulties in mounting NFS-Balls on laptops running Windows 11 (which is installed on RedmiBook Pro 8 by default), especially when it comes to interaction with banking services. In this article, we will analyze the step-by-step instructions taking into account the specifics of Xiaomi equipment and the security requirements of SberBank, as well as consider typical errors and ways to eliminate them.
1. Preparation of Xiaomi RedmiBook Pro 8 laptop to work with NFS
Before setting up the NFS protocol, you need to make sure your RedmiBook Pro 8 meets the minimum requirements. The laptop must be connected to a Wi-Fi 5/6 network or via an Ethernet adapter (recommended for stability).
- π Windows Version: RedmiBook Pro 8 comes with Windows 11 Home/Pro. For NFS Service component needs to be included NFS (Available only in the Pro version or after the upgrade).
- π‘οΈ Antivirus: Temporary disabling of Windows Defender or third-party antiviruses (such as Kaspersky) may be required to test the connection.
- π‘ Ports: Make sure that ports are 2049 (TCP/UDP) and 111 (TCP/UDP) firewall.
If you use SberBank Online to work with financial documents, it is recommended to create a separate user in Windows with limited rights specifically to access the Internet. NFS-This minimizes the risk of data breaches.
β οΈ Attention: Connection NFS-The server is not secure via public networks (such as a cafe or airport) using only trusted networks or setting up a network. VPN premount.
To check network availability, run in Command Prompt (Win + R β cmd):
ping <IP- address NFS- server>If the ping passes, but the connection fails, the problem may be in the server settings or access rights.
2. Installation of NFS components in Windows 11
By default, Windows 11 Home (which is often pre-installed on RedmiBook Pro 8) does not support the NFS client.
- Upgrade to Windows 11 Pro (license is worth it) ~5000β½) or use alternative solutions, for example, WSL 2 with Linux).
- Insert an NFS Service component:
Go to Control Panel β Programs β Enable or disable Windows components. In the list, find:
- π Services NFS (tick off).
- π§ Client for NFS (necessarily!).
- π Administrator service for NFS (Optionally, to manage the server).
After installing the components, restart your laptop. To check if you have a successful installation, do it in PowerShell:
Get-WindowsOptionalFeature -Online -FeatureName "NFS-Client"If the Enabled status is set correctly, the component is installed.
β οΈ Note: Some builds of Windows 11 for Xiaomi RedmiBook Pro 8 may not have the Service option NFS In the list of components, use it. WSL 2 with Ubuntu distribution for mounting NFS.
βοΈ Preparation for setup NFS
3. Configuring the connection to NFS-server
To mount a network drive in Windows 11, use Command Prompt or PowerShell.
mount -o anon,nolock \\<IP- address server>\< path to-ballet> <letter disc>:Example for connecting to /mnt/sberbank ball on a server with IP 192.168.1.100 under the letter Z:
mount -o anon,nolock \\192.168.1.100\mnt\sberbank Z:Team parameters:
| Parameter | Description |
|---|---|
| anon | Connection as an anonymous user (without authentication). |
| nolock | Disables file locking (accelerates work, but reduces reliability). |
| mtype=hard | Hard mounting (recommended for stable networks) |
| retry=5 | Number of attempts to connect when the failure occurs. |
To automatically connect when you start the system, add a command to the Task Planner or create a.bat file in the boot folder.
π‘
If NFS-Server requires authentication, use the parameter -o username=<name>,password=<password>. However, for security, it is better to configure access to the keys. SSH or use Kerberos
4. Typical errors and their elimination
When connecting to NFS on RedmiBook Pro 8, there may be errors.
- π« Error 53: Network path not found Reason: Wrong IP-Server address or path to the ball. Check server availability via ping and path correctness (registrar is important in Linux!).
- π Mistake. 13: Refusal of access: The server does not have access rights for your IP Or the user. /etc/exports server-side.
- β‘ Error 67: Network name not found Reason: Problems with the network DNS or the wrong host name. IP-address instead of server name.
If you use Sberbank Online and encounter errors when working with files on the Internet NFS-CD, try it:
- Disable recording caching (-o noac in mount command).
- Use the NFSv3 version instead of NFSv4 (add -o nfsvers=3).
β οΈ Note: When working with bank documents, avoid mounting NFS SberBank can block access to an account if suspicious activity is detected (for example, frequent connections from different locations). IP).
How to check the NFS version on the server?
5. Optimization of NFS for working with SberBank Online
If you keep on NFS-backup copies of transactions or scans of documents for SberBank Online, configure the following parameters to improve reliability:
- π Automatic reconnect: Add retry parameters to the mount command=10,timeo=600 to increase waiting times.
- π Access Restriction: On the server in the file /etc/exports Just point out IP-Address to your RedmiBook Pro 8: /mnt/sberbank 192.168.1.50(rw,sync,no_subtree_check)
- π Traffic encryption: Use it NFS over TLS or tune in VPN (e.g. WireGuard for data protection.
Important: SberBank Online can block access to files if they are stored on a low-security network drive, and it is recommended to use NFS only for backups, not for direct work with active documents.
To check the speed of reading / writing on NFS-Use the CrystalDiskMark utility. Normal values for RedmiBook Pro 8 (c) SSD and Gigabit Ethernet):
- π₯ Reading: 80β110MB/s.
- π€ Record: 30-50 MB/s (depending on the server).
π‘
For critical data (such as SberBank statements), use rsync to synchronize instead of direct mounting of NFS. This will reduce the risk of data loss when a communication breaks.
6. Alternative ways to connect for Windows 11 Home
If your RedmiBook Pro 8 is running Windows 11 Home and you canβt upgrade to Pro, consider alternatives:
- WSL 2 + Linux: Install Ubuntu via Microsoft Store and mount NFS inside the subsystem: sudo mount -t nfs 192.168.1.100:/mnt/sberbank /mnt/sberbank_local Then set up a shared folder from Windows via \\wsl$\Ubuntu\mnt\sberbank_local.
To automate backup, set up Task Scheduler in Windows with the script running:
robocopy C:\SberBank_Docs Z:\Backup /MIR /LOG:C:\backup_log.txtWhere Z: is the letter connected NFS-disk.
7.Security: How to protect Sberbank data on NFS
Financial records require enhanced security measures, and the following steps will help minimize risks:
- π Encryption: Use EncFS or VeraCrypt to create an encrypted container on the Internet NFS-Example of a command for VeraCrypt: Veracrypt /create Z:\encrypted_container.hc /volume Z:\ /password MySecurePass123
- π‘οΈ Two-factor authentication: Set up key access on the server SSH Instead of passwords, generate a key on RedmiBook Pro. 8: ssh-keygen -t ed25519 And add the public key to the ~/.ssh/authorized_keys server-side.
- π‘ Network isolation: Place NFS-subnet (VLAN) and configure firewall rules to allow access only from IP-address of your laptop.
To monitor suspicious activity, use Wireshark or GlassWire.
- Unexpected connections to port 2049.
- Large volume of outgoing traffic (possible data leakage).
β οΈ Note: If you are connecting to NFS-server via mobile internet (for example, USB-SberMobile modem, disable Automatic parameterization in network settings. This will prevent data leakage through the proxy.