
Frequently Asked Questions
General
Privacy
- What kind of personal data do you collect and why?
- Do you share my data (files, IP, etc.) with other sites?
- Okay, I trust you, but you don't manage the underlying infrastructure, so can I trust in your provider?
- Can I ask to have my public IP removed from your system?
VPS
- What are the allowed limits for using the VPS?
- Do I need to download the private key every time I launch a VPS?
- (Windows) How to connect to an SSH VPS with PuTTY?
- (Windows) How to connect to an SSH VPS with MobaXTerm?
- (Linux) How to connect to an SSH VPS with a Terminal?
- (Linux) How to connect to an RDP VPS with Remmina?
- (Windows) How to connect to an RDP VPS with Remote Desktop?
- How to transfer files between my computer and VPS with Filezilla?
- (Linux) How to mount a remote filesystem with sshfs?
General
You offer several free tools without ads, what's the trick?
- There's no "trick". This web is more a hobby project than a way to make money. The tools I offer are limited (see sections below) and I adjust these limits so that the expenses involved in this project do not exceed my budget.
Privacy
What kind of personal data do you collect and why?
- I collect public IP from users that use VPS, Storage tool or the URL shortener. (I do NOT collect any personal data if a user doesn't use any of these tools). This data allows me to block users who do a bad use of my tools (see Terms of Service). IPs are stored for 1 month.
Okay, I trust you, but you don't manage the underlying infrastructure, so can I trust in your provider?
- My provider, Amazon Web Services (AWS) is the biggest cloud company in the world and it takes security very seriously. You can read its Data Privacy FAQ in this link.
Can I ask to have my public IP removed from your system?
- Yes, you can request it by email, but if you use any of the tools described above after the deletion process, your IP will be saved again.
VPS
What are the allowed limits for using the VPS?
- You can read about this in Terms of Service.
Do I need to download the private key every time I launch a VPS?
- No, if the key name is the same, it's the same key (one per region).
(Windows) How to connect to an SSH VPS with PuTTY?
- Download the Private Key.
- You need to change the Private Key format to PPK. To do so, open PuTTYgen. It was installed with PuTTY.
- Click on "Load".
- Click on "PuTTY Private Key Files" at the bottom-right corner and select "All Files (*)"
- Select the Private Key and click OK.
- Click on "Save private key". You can set up a password for the key if you want.
- Open PuTTY.
- Type the public IP or the public DNS on the "Host Name" input box.
- On the left menu, click on "Connection > SSH > Auth"
- Select your PPK file by clicking on "Browse".
- Click on "Connection > Data" and type the username on "Auto-login username".
- Go back to "Session" on the left menu and type a name for the connection inside "Saved sessions" input box.
- Click "Save".
- Click "Open".
(Windows) How to connect to an SSH VPS with MobaXTerm?
- Download the Private Key.
- Click "Session" icon at the top-left.
- Click "SSH".
- Type the public IP or the public DNS on "Remote Host".
- Click on "Specify username" and type the username.
- Click on "Advanced SSH settings".
- Click on "Use private key" and click on the file icon inside the input box.
- Select the Private Key
- Click on "Bookmark settings" and type a Session Name.
- Click "OK".
- Double-click on the session name (on the left menu) to connect.
(Linux) How to connect to an SSH VPS with a Terminal?
- Download the Private Key.
- You probably have an SSH client installed on your system. Check it by typing
ssh
in the Terminal. If it's not installed, you can install "openssh-client". - The first time, you need to change the Private Key file permissions: type
chmod 600 [private key file]
- Type this command:
ssh -i [private key file] [username]@[public IP or public DNS]
ssh -i ./freewebtools_eur_key.pem ubuntu@123.456.789
- If the terminal shows this question: "Are you sure you want to continue connecting (yes/no/[fingerprint])?, type "yes" to save the fingerprint of the key.
(Linux) How to connect to an RDP VPS with Remmina?
- In Remmina, click on the top-left icon: "New connection profile".
- Select the RDP Protocol.
- Type a Name for the connection.
- Type the public IP or public DNS on "Server" field and the username and password in their respective fields.
- You can choose the window resolution (client resolution, custom, etc.).
- Click on "Save and connect".
(Windows) How to connect to an RDP VPS with Remote Desktop?
- Type the public DNS on "Computer" input box.
- Click on "Show options" and type the username.
- Click "Connect".
How to transfer files between my computer and VPS with Filezilla?
- Download Private Key.
- In Filezilla, click on the top-left icon ("Site Manager").
- Click on "New site" and type a name for the connection.
- In "Protocol" select "SFTP".
- Type the public IP or the public DNS on "Host".
- In "Logon Type", select "Key File".
- Type the username.
- Click "Browse" to select the private key file. In the pop-up window, select "PEM files" at the bottom-right corner and select the private key.
- Finally, click "Connect".
(Linux) How to mount a remote filesystem with sshfs?
- Download the Private Key.
- SSHFS is a program that is usually installed with ssh.
- You need to set a mount point by creating a folder. You can name it whatever you want.
mkdir remotefolder
- Type this command:
sshfs [username]@[ip]:[remote path] [mount point] -o IdentityFile=[private key file path (full path)]
For example:sshfs ubuntu@123.456.789:/home/ubuntu mounts/sshfs/ -o IdentityFile=/home/user/Documents/freewebtools_eur_key.pem
- To unmount:
umount [mount point]