You could run NFS, iSCSI, IPP, SSH, FrontView HTTPS, etc over the Remote 'VPN' connection. Do more with what you already have. It does require SSH right now to modify a configuration file on the NAS.
The configuration file that requires modification is: /opt/leaf/conf/nas/lnconfiguration.xml
Here is an example of the contents:
- Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<Configuration>
<AccountInformation>
<Username>CaponeNAS</Username>
<Password>!thepassword!</Password>
</AccountInformation>
<ConnectionSettings>
<UseProxy>False</UseProxy>
<ProxyType Value="HTTP" Address="" Port="">
<Username></Username>
<Password></Password>
</ProxyType>
<Authtentication Value="False"/>
<UsePortForwarding>True</UsePortForwarding>
<PortForwarding Protocol="TCP" Port="6300"/>
</ConnectionSettings>
</Configuration>
We need to add this section right after <Configuration>, and restart Remote under Installed Add-ons:
- Code: Select all
<Settings>
<Firewall>0</Firewall>
</Settings>
The file should now look like:
- Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<Configuration>
<Settings>
<Firewall>0</Firewall>
</Settings>
<AccountInformation>
<Username>CaponeNAS</Username>
<Password>!thepassword!</Password>
</AccountInformation>
<ConnectionSettings>
<UseProxy>False</UseProxy>
<ProxyType Value="HTTP" Address="" Port="">
<Username></Username>
<Password></Password>
</ProxyType>
<Authtentication Value="False"/>
<UsePortForwarding>True</UsePortForwarding>
<PortForwarding Protocol="TCP" Port="6300"/>
</ConnectionSettings>
</Configuration>
Now open the Remote client on your PC. Under Properties>Advanced, remove the checkbox for Enable Firewall.

You can now use the Remote tunnel for pretty much anything. As always, NTGR support will not help with any issues you encounter while doing this.

