Changes between Version 2 and Version 3 of jazz/09-02-28
- Timestamp:
- Feb 28, 2009, 8:37:16 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
jazz/09-02-28
v2 v3 14 14 +----------------+ | | +--------------------------------+ 15 15 }}} 16 * [做法] 在 PC 上定期用 crontab 跑 remote_ssh.sh 這隻 Script 16 * [做法] 17 * STEP 1: 用 ssh-copy-id 交換 SSH key - 幫忙加進 SERVER 的 .ssh/authorized_keys 18 {{{ 19 jazz@PC:~$ ssh-keygen 20 jazz@PC:~$ ssh-copy-id .ssh/id_rsa.pub jazz@${SERVER} 21 }}} 22 * STEP 2: 在 PC 上定期用 crontab 跑 remote_ssh.sh 這隻 Script 17 23 {{{ 18 24 jazz@PC:~$ cat remote_ssh.sh 19 25 #!/bin/bash 20 26 kill -9 $(pidof ssh) 21 nohup ssh -f -N -R 10000:localhost:22 jazz@${SERVER _IP}22 nohup ssh -f -N -R ${SERVER _IP}:8123:localhost:80 jazz@${SERVER_IP}27 nohup ssh -f -N -R 10000:localhost:22 jazz@${SERVER} 28 nohup ssh -f -N -R ${SERVER}:8123:localhost:80 jazz@${SERVER} 23 29 }}} 24 * [設定] 要達成使用行為二的目的,必須設定 /etc/ssh/sshd_config,加入 GatewayPorts yes 的描述30 * STEP 3: 要達成使用行為二的目的,必須在 ${SERVER_IP} 上設定 /etc/ssh/sshd_config,加入 GatewayPorts yes 的描述 25 31 {{{ 32 jazz@SERVER:~$ cat >> /etc/ssh/sshd_config < EOF 26 33 # SSH Port Forwarding 27 34 GatewayPorts yes 35 EOF 28 36 }}}