I am setting up a Linux server that needs to: (1) Allow remote access. (2) Prevent files from being downloaded.
Specifically, the server holds data that users will be analyzing, building models with, etc. Users will need to access the server from their work computers (also running Linux). However, they should not be able to transfer data from the server to the users' work computers.
Right now, the only solution I've thought of is setting up two layers of accessing: the user first ssh's or VNC's into an intermediate server and then VNC's from the intermediate server into the main server.
Is there a simpler solution? (Preferably a solution without remote desktops.)
Thanks!