Out the box your passwords if you type them are sent in plaintext, this is unacceptable.
My keyboard it connected to my linux machine which is where I run the synergy server.
on my Linux machine (the server) I start synergy with this (I have it mapped to a menu item in my window manager).
killall synergys;synergy.conf looks like this
synergys -a localhost:24777 --config $HOME/lib/X/synergy/synergy.conf &
Now on my mac I do this (I have it in a shell script called synergy)...
section: screens
ark.corp.com:
laptop:
end
section: links
ark.corp.com:
left = laptop
laptop:
right = ark.corp.com
end
killall synergycNow all synergy communication is on the linux server and the laptop just talks to a local port which is an SSH secure tunnel to the linux machine. Works great!
ssh -x -q -N -L24777:localhost:24777 ark.corp.com &
sleep 3;
/usr/local/synergy/synergyc -n laptop localhost:24777 &
I haven't quite got this to work between two mac machines yet...
0 comments:
Post a Comment