在 Windows client 端
抓回 SSHWinClient-3.0.0.exe, 安装 SSHWinClient
Step by Step:1. 执行 Secure Shell Client ?开始 / 程序集 / SSH Secure Shell / Secure Shell Client?
2. 按 Enter 开启联机, 输入主机名称, 帐号
3. 如果是第一次联机到该主机, 系统会询问是否将此主机加入内部数据库
4. 输入密码
5. 联机成功
建议进行下列设定动作: (Edit-Settings)
Profile Settings-Connection, Terminal Answerback 设成 xterm
Global Settings-Appearance-Font, Fixedsys, 12
Global Settings-Appearance-Colors, Foreground 设成 Silver; Background 设成 Black
在 UNIX Client 端
抓回 ssh-1.2.31.tar.gz 或 ssh-2.4.0.tar.gz (或 ssh-3.0.1.tar.gz)
编译 Server 与 Client 执行档 (需 root privilege):
ssh1:
sh configure --with-x --with-libwrap --with-etcdir=/etc/ssh1
make depend all install
ssh2:
sh configure --with-x --with-libwrap
make all install
只编译 Client 执行档 (不需 root privilege):
ssh1:
sh configure
make depend all
mkdir -p $HOME/ssh
for files in scp ssh ssh-add ssh-agent ssh-askpass ssh-keygen;
do
install -m 700 -s $files $HOME/ssh/${files}1
done
(为了跟 ssh2 有所区分, 所以把执行档改名成 ssh1)
ssh2:
sh configure
make all
for files in `find apps -name s\*2` ;
do
files2=`basename $files | tr -d '[2]'`
install -m 700 -s $files $HOME/ssh/${files2}
done
联机
执行ssh @fractal.ee.ntu.edu.tw,
或是ssh -l fractal.ee.ntu.edu.tw