Linux Reviews Windows

RPORT the free and open source remote management tool

Rport

RPort is a Remote Management (RMM) Software that immediately boosts the efficiency of IT teams and MSPs by giving them the tools to manage all their IT systems – from one simple, intuitive interface, from anywhere. In this article, I will show you how to work with “RPORT the free and open source remote management tool”. Please see Shell Scripting: How to Automate a Process in Linux, and Remote Desktop cannot find the computer this in the specified network: Verify the computer name and domain that you are trying to connect.

It helps you to manage dozens or hundreds of servers and desktops efficiently from a central dashboard. I’m focusing on Windows support, but RPort supports Linux as well.

Rport consists of two parts, a central server, and the clients. Both are free software and the server is intended to be self-hosted.

With RPORT, you can use your favourite Remote Desktop or SSH client, or you run everything in your browser. One single control centre manages it all!

Features of RPort

With RPort You Can perform the following actions as discussed below. Here is a related guide: Getscreen.me: Flexible Remote Access Software For Customer Support, and How to Remove Frequently Used Folders from Quick Access in Windows 11.

  • Efficiently manage your entire IT infrastructure from your browser, the command line, or via a REST API
  • Securely log in to any Windows or Linux server without a public IP address from your desktop
  • Manage routers, switches, printers, or IoT devices, from wherever you are without a VPN

The server comes with a web-based user interface, and each managed system needs the report client installed.

Once the client and server are connected, you can do almost every task from the web console.

Rport is made for LAN and WAN connections. If you install the RPort server – as I did – on Azure, you can securely manage remote systems in any location over a public internet connection. Rport is an all-in-one remote management suite for heterogeneous environments. Rport addresses three basic needs of a sysadmin:

  • Fast and secure remote access from everywhere
  • Script execution from a central dashboard
  • Automation of common tasks

How does RPORT differentiate from other Software

There is one notable difference from the Microsoft System Center. RPort does not require an Active Directory. You can manage systems even if they are members of different AD Domains. The user interface is clear and lean. It gives you a nice overview of your inventory. One major function is the so-called tunnels. The client creates reverse tunnels on demand.

With just one click, you can access the remote desktop of any machine, even if they are behind a firewall and without a public IP address. But for my home lab, I don’t need this feature.

The other major feature is scripting from a central place. Have you ever tried to set up PowerShell Remoting? A nightmare. With Rport you can execute a PowerShell script directly from the browser. On a single machine or on many machines in parallel. That makes software deployment, applying local group policies, and almost every task comfortable and efficient.

Kindly take a look at View RDP Configuration Settings: Connect automatically on an RDP session, how to Enable a Pre-Boot BitLocker PIN on Windows, and How To Force Stop A Windows Service When Stop Option Is Grayed Out.

RPORT Remote Management

With RPORT, you can perform remote management of anything from your browser within minutes. This actually enables you to manage your entire infrastructure via one easy-to-use dashboard. Servers, routers, IoT devices. Windows, Linux. Behind firewalls, Rport connects them all securely. Rport allows you to securely remote access devices in your intranet via

- SSH
- Remote Desktop
- VNC
- Telnet
- Web-based user interfaces
- Any TCP based protocol can be made accessible like SMB (Windows file sharing), network printing, HTTP APIs, webservers.

Start now instantly

Launch your own private rport server instantly or
Get a fully managed instance on your own cloud server instantly. We do all the troublesome work for you. Then connect your devices to your own fixed public IP address. Note, all data is stored on encrypted hard disks and can connect up to 500 devices, and unlimited concurrent sessions (tunnels).

I’ll continue testing RPort because the first test gave good results. It saved me a lot of time setting up the servers in my home lab. I’m always surprised by what you can do just with free software. Here are the two PowerShell scripts I used for the parallel execution.

Also, see How to fix Remote Desktop can’t connect to the remote computer for one of these reasons, and how to Disable credential Prompts for Remote Desktop Connections.

Install 7Zip

iwr https://7-zip.org/a/7z1900-x64.msi -OutFile 7z1900-x64.msi
msiexec /i 7z1900-x64.msi /quiet /qn /norestart
sleep 10
Remove-Item -Path 7z1900-x64.msi -Force
if (Test-Path "C:\Program Files\7-Zip\7z.exe") {
   Write-Host "7zip installed"
}
Screenshot-2021-11-10-at-22.38.11

Install Notepad++

if (Test-Path "C:\Program Files\Notepad++\notepad++.exe" -PathType leaf) {
   Write-Host "Notepad++ is already installed."
}
else {
   cd $env:Temp
   iwr https://notepad-plus-plus.org/repository/7.x/7.0/npp.7.Installer.x64.exe -OutFile npp.7.Installer.x64.exe
   .\npp.7.Installer.x64.exe /S
   sleep 10
   rm npp.7.Installer.x64.exe -Force
   New-Item -ItemType SymbolicLink -Path "C:\Users\Public\Desktop\" -Name "notepad++.lnk" -Value "C:\Program Files\Notepad++\notepad++.exe"
   Write-Host "Notepad++ installed"
}
Screenshot-2021-11-10-at-22.40.29

I hope you found this blog post helpful on RPORT the free and open source remote management tool. If you have any questions, please let me know in the comment session.

Subscribe
Notify of
guest

1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Howard A Story

Why would you delete the installer before checking to see if the program is installed?

1
0
Would love your thoughts, please comment.x
()
x