-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #506 from m-yamanashi/add-v3-document
Make corrections for the 3rd division
- Loading branch information
Showing
6 changed files
with
61 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,10 @@ | |
|
||
## Connecting to Interactive Node | ||
|
||
To connect to the interactive node (*int*), the ABCI frontend, two-step SSH public key authentication is required. | ||
To connect to the interactive node (*login*), the ABCI frontend, two-step SSH public key authentication is required. | ||
|
||
1. Login to the access server (*as.v3.abci.ai*) with SSH public key authentication, so as to create an *SSH tunnel* between your computer and *int*. | ||
2. Login to the interactive node (*int*) with SSH public key authentication via the SSH tunnel. | ||
1. Login to the access server (*as.v3.abci.ai*) with SSH public key authentication, so as to create an *SSH tunnel* between your computer and *login*. | ||
2. Login to the interactive node (*login*) with SSH public key authentication via the SSH tunnel. | ||
|
||
In this document, ABCI server names are written in *italics*. | ||
|
||
|
@@ -33,7 +33,7 @@ In this section, we will describe two methods to login to the interactive node u | |
Login to the access server (*as.v3.abci.ai*) with following command: | ||
|
||
``` | ||
[yourpc ~]$ ssh -i /path/identity_file -L 10022:int:22 -l username as.v3.abci.ai | ||
[yourpc ~]$ ssh -i /path/identity_file -L 10022:login:22 -l username as.v3.abci.ai | ||
The authenticity of host 'as.v3.abci.ai (0.0.0.1)' can't be established. | ||
RSA key fingerprint is XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX. <- Display only at the first login | ||
Are you sure you want to continue connecting (yes/no)? <- Enter "yes" | ||
|
@@ -61,7 +61,7 @@ RSA key fingerprint is XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX. <- Displ | |
Are you sure you want to continue connecting (yes/no)? <- Enter "yes" | ||
Warning: Permanently added 'localhost' (RSA) to the list of known hosts. | ||
Enter passphrase for key '/path/identity_file': <- Enter passphrase | ||
[username@int1 ~]$ | ||
[username@login1 ~]$ | ||
``` | ||
|
||
#### ProxyJump | ||
|
@@ -72,7 +72,7 @@ First, add the following configuration to your ``$HOME/.ssh/config``: | |
|
||
``` | ||
Host abci | ||
HostName int | ||
HostName login | ||
User username | ||
ProxyJump %[email protected] | ||
IdentityFile /path/to/identity_file | ||
|
@@ -92,7 +92,7 @@ ProxyJump does not work with OpenSSH_for_Windows_7.7p1 which is bundled with Win | |
|
||
``` | ||
Host abci | ||
HostName int | ||
HostName login | ||
User username | ||
ProxyCommand C:\WINDOWS\System32\OpenSSH\ssh.exe -W %h:%p %[email protected] | ||
IdentityFile C:\path\to\identity_file | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,10 @@ | |
|
||
## インタラクティブノードへの接続 {#connecting-to-interactive-node} | ||
|
||
ABCIシステムのフロントエンドであるインタラクティブノード(ホスト名: *int*)に接続するには、二段階のSSH公開鍵認証による接続を行います。 | ||
ABCIシステムのフロントエンドであるインタラクティブノード(ホスト名: *login*)に接続するには、二段階のSSH公開鍵認証による接続を行います。 | ||
|
||
1. SSH公開鍵認証を用いてアクセスサーバ(ホスト名: *as.v3.abci.ai*)にログインして、ローカルPCとインタラクティブノードの間にSSHポートフォワーディングによるトンネリング(以下「SSHトンネル」という)を作成 | ||
2. SSHトンネルを介して、SSH公開鍵認証を用いてインタラクティブノード(*int*)にログイン | ||
2. SSHトンネルを介して、SSH公開鍵認証を用いてインタラクティブノード(*login*)にログイン | ||
|
||
なお本章では、ABCIのサーバ名は *イタリック* で表記します。 | ||
|
||
|
@@ -33,7 +33,7 @@ ABCIシステムのフロントエンドであるインタラクティブノー | |
以下のコマンドでアクセスサーバ(*as.v3.abci.ai*)にログインし、SSHトンネルを作成します。 | ||
|
||
``` | ||
[yourpc ~]$ ssh -i /path/identity_file -L 10022:int:22 -l username as.v3.abci.ai | ||
[yourpc ~]$ ssh -i /path/identity_file -L 10022:login:22 -l username as.v3.abci.ai | ||
The authenticity of host 'as.v3.abci.ai (0.0.0.1)' can't be established. | ||
RSA key fingerprint is XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX. <- 初回ログイン時のみ表示 | ||
Are you sure you want to continue connecting (yes/no)? <- yesを入力 | ||
|
@@ -61,7 +61,7 @@ RSA key fingerprint is XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX. <- 初 | |
Are you sure you want to continue connecting (yes/no)? <- yesを入力 | ||
Warning: Permanently added 'localhost' (RSA) to the list of known hosts. | ||
Enter passphrase for key '-i /path/identity_file': <- パスフレーズ入力 | ||
[username@int1 ~]$ | ||
[username@login1 ~]$ | ||
``` | ||
|
||
#### ProxyJumpの使用 {#proxyjump} | ||
|
@@ -72,7 +72,7 @@ Enter passphrase for key '-i /path/identity_file': <- パスフレーズ入力 | |
|
||
``` | ||
Host abci | ||
HostName int | ||
HostName login | ||
User username | ||
ProxyJump %[email protected] | ||
IdentityFile /path/to/identity_file | ||
|
@@ -92,7 +92,7 @@ Windows 10 バージョン 1803 以降に標準でバンドルされている Op | |
|
||
``` | ||
Host abci | ||
HostName int | ||
HostName login | ||
User username | ||
ProxyCommand C:\WINDOWS\System32\OpenSSH\ssh.exe -W %h:%p %[email protected] | ||
IdentityFile C:\path\to\identity_file | ||
|
Oops, something went wrong.