Change the FQDN of the RPort server
Learn how to use your own name instead of the random *.user.rport.io hostname
Last updated
Was this helpful?
Learn how to use your own name instead of the random *.user.rport.io hostname
Last updated
Was this helpful?
If you want to change the FQDN of a RPort server installed via the the first step is to create a DNS A Record that points to the IP address of your virtual machine.
🧨 Do not use a CNAME record pointing to the *.users.rport.io FQDN. Always use an A-record.
The free DNS service of RPort will delete unused hostnames automatically, and your CNAME-record would become orphaned.
We will use rport-server.example.com
as an example for the new hostname of your RPort server.
Login to the console of your rport-server using SSH and verify the new DNS record has been set up properly. Execute the following two commands. Both must print the same IP address – the IP address of your RPort server.
If you already have certificates for the new FQDN, you can skip this step.
Stop the RPort server first. To generate new free certificates via Let's Encrypt, execute the following commands.
With the new certificates generated, or with your own certificates, open the configuration file /etc/rport/rportd.conf
with an editor. Scroll down to the lines where certificates are configured. Certificates are registered twice. In the [server]
and [api]
section. Change it as shown.
Before (with random *users.rport.io FQDN)
After (example with your FQDN)
The rportd.conf
file contains a setting url =
, that indicates clients who is their server. You must change this setting to the new hostname. If the client url contains a hostname, you must change it. If it contains an IP address, no changes are needed.
Before (with random *users.rport.io FQDN)
After (example with your FQDN)
If you client url consist of a hostname you must change this hostname on all clients too in the rport.conf
client configuration file.
If your RPort server is using the default script to send two-factor tokens via email, you must enter the new URL of your server in /usr/local/bin/2fa-sender.sh
too.
Open the script with an editor and enter the URL of your RPort server.
Before:
-F url=https://*.users.rport.io 2>&1)
After (example with your FQDN):
-F url=https://rport-server.example.com 2>&1)
Wildcards are not supported for custom domain names.
Finally, start the rport server again with systemctl start rportd
. Type in the new https://<NEW_FQDN>
into your browser and check. 🎉
Don't be frightened if clienst appear disconnected. Because the rport server has beend stopped for a while it takes some time to reconnect. But trust, they will all reconnect.
After rportd
is running again and uses the new certificates for the new FQDN, the old certificated should be removed. Otherwise, certbot
would try to renew them too, at worst running into DNS resolution errors since the old FQDN doesn't exist any more.
A proper clean-up can be achieved by running certbot delete
and selecting the old cert via the corresponding number key.
If your rport server runs behind a reverse proxy, can be your own or a service like CloudFlare, pay attention to the . Usually, you must specify an alternative hostname that points directly to your rport server, bypassing all reverse proxies.
Also consider changing the . When using TOTP as the second login factor, this field is filled. If you chose the FQDN of the server as the value for this field, this value should be changed in line with the new FQDN.