Category: Remote Access, Remote Desktop, Terminal Server

LogMeIn Settings for Routers & Firewalls
article #188, updated 2733 days ago

Best information is now here for Windows and other software firewalls:

http://help.logmein.com/articles/en_US/FAQ/How-do-I-configure-my-firewall-to-work-with-LogMeIn-en1

There is a link in the above for “whitelisting information” which really has the skinny for hardware firewalls:

http://help.logmein.com/articles/en_US/FAQ/Whitelisting-and-LogMeIn

Categories:      

==============

AnyDesk: remarkable cross-platform remote control
article #966, updated 2841 days ago

This is very interesting:

http://anydesk.com/

Categories:      

==============

Video oddities in Windows 8.1
article #960, updated 2858 days ago

This is Windows 8.1 only, not 7, not 10. It is not known whether 8.0 is affected.

The current known operative case is Citrix-hosted applications, in a dual-monitor situation. If you see a malfunction, go to Control Panel, All Control Panel Items, Display. If “Let me choose one scaling level for all my displays” is unchecked, check it. It will require logoff/logon. And the problem will be fixed.

Categories:      

==============

SSH login without password
article #356, updated 2953 days ago

Here’s a bash script! Works very nicely. Once run on one side and specifying a destination, one does not need a password to open that SSH link in the future.

#!/bin/bash
echo "setup-autossh by Jonathan E. Brickman, jeb@ponderworthy.com"
if [ $# = 0 ]; then
	read -p "Please enter the SSH destination in the format user@host : " sshdest
elif [ $# = 1 ]; then
	sshdest=$1
else
	echo "Usage: setup-autossh [user@destination]"
	exit 1
fi
if [ ! -f ~/.ssh/id_rsa ]; then
	echo "Creating RSA key for authorization..."
	ssh-keygen -t rsa -N "" -f ~/.ssh/id_rsa
fi
echo "Copying authorized RSA key to $sshdest ..."
remotecmd="cat > authorized_keys ; mkdir -p .ssh ; cat authorized_keys >> .ssh/authorized_keys ; rm authorized_keys"
cat ~/.ssh/id_rsa.pub | ssh $sshdest $remotecmd

Categories:      

==============

Installing Software on Terminal Servers
article #257, updated 3419 days ago

Terminal servers require special user modes, for software additions to work correctly, and sometimes, to happen at all.

Before installing anything on a terminal server, do this:

change user /install

And after the installation is complete, do this:

change user /execute

Categories:      

==============

X2Go remote control
article #758, updated 3422 days ago

It appears that FreeNX has begotten X2Go:

http://wiki.x2go.org/doku.php/start

Categories:      

==============

X Forwarding with SSH over the Internet
article #693, updated 3626 days ago

Use the following as a script wrapper:

#!/bin/bash
ssh -Y -C -c blowfish $1

It turns compression on, and also sets up Blowfish encryption which is much more responsive than the default.

Categories:      

==============

Remote Support: MingleView
article #666, updated 3697 days ago

Something new, looks like it might be excellent:

http://www.mingleview.com/

Categories:      

==============

Remote Web Workplace (RWW) takes a long time to log in and work
article #655, updated 3707 days ago

If you see a slew of 10016 errors in event logs, first try this:

http://support.microsoft.com/kb/920783

and then try this:

http://halfloaded.com/blog/sbs-2011-distributedcom-eventid-10016-fixed/

If you have to authenticate three times — once for for the portal, twice for RDP — try this:

http://tsbraindump.blogspot.com/2012/02/sbs-2011-remote-web-workplace-login.html

Categories:      

==============

Fix authentication to Remote Web Workplace
article #649, updated 3720 days ago

Sometimes the default configuration for Remote Web Workplace does not set up use of the RDP gateway by default. The following documentation:

http://technet.microsoft.com/en-us/library/cc770545.aspx

discusses a group policy setting which fixes this nicely.

Categories: