When accessing a server through PAM RDP proxy on Mac using Microsoft Remote Desktop App, we found that keyboard and mouse clicks do not work.
We cannot get past the Senhesaguera RDP proxy screen.
Same access works from a Windows machine.
Anyone else faced this issue?
1 Like
jnascimento
(Janaína Nascimento)
December 23, 2022, 10:02pm
2
Hi @Ajeeth_Samuel ,
you will need to install FreeRDP on BigSur.
Step for installation:
Go to https://brew.sh
Copy the installation command:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Paste this command into your macOS Terminal
Verify that brew is installed with the command:
brew help
Enter the command:
brew install xquartz
Enter the command:
brew install freerdp
Reboot the machine:
now reboot.
Run the command:
xfreerdp /v:demo.senhasegura.io:8130 /relax-order-checks +glyph-cache +bitmap-cache
Thanks. I did not try the one suggested but got it working using rdesktop as below:
Install MacPorts
The MacPorts Project -- Download & Installation
Install rdesktop
sudo port install rdesktop
Install Quartz (for X11)
https://www.xquartz.org
Reboot
Run rdesktop from terminal or write a script
rdesktop -g 1240x1024 -u PamUser[domain\targetUser@TargetHost] -T WindowTitle -z <pam.server>
2 Likes
jnascimento
(Janaína Nascimento)
December 28, 2022, 1:44pm
4
Thanks for sharing the solution!