Jafar Abedi
Jafar Abedi

Reputation: 133

download file from luci web user interface (openWrt Luci)

I want to allow user to download some files using Luci web user interface of my openWrt linux . I have uploaded my files in /etc and /tmp folders of openWrt. But i dont know how can i give a url of this uploaded files to user . Can any one help me ? Thanks in advance

Upvotes: 3

Views: 2426

Answers (1)

Vasily G
Vasily G

Reputation: 939

The easiest way is to create a symlink to this file in /www directory. For example, to download /etc/passwd file

ln -s /etc/passwd /www/test

Then, in your web browser, go to 192.168.1.1/test to download the file.

Upvotes: 2

Related Questions