0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

UbuntuにSSHで接続する

Last updated at Posted at 2023-01-22
1 / 2

環境確認

クライアント側

Ubuntuのバージョン確認

lsb_release -a
Distributor ID:	Ubuntu
Description:	Ubuntu 20.04.2 LTS
Release:	20.04
Codename:	focal

接続側

macOS

クライアント側の設定

ユーザーの追加

adduser katsuji

パスワードを設定してとか聞かれるのでパスワードだけ設定してあとはEnter

usermod -G sudo katsuji

sshd_condigの編集

/etc/ssh/sshd_configを編集することでrootでの接続を拒否したり、接続ユーザーを追加できる。
色々と書いてあるが以下の項目を追加する

/etc/ssh/sshd_config
PermitRootLogin no #root以外の接続を拒否
AllowUsers katsuji  #ユーザーの追加
Port XXXX #デフォルトは22なので変更しておく方が安全

接続側の設定

sshのconfigを作成

vi ~/.ssh/config
~/.ssh/config
Host ssh_katsuji #適当な名前
  HostName X.X.X.X #クライアント側のIPアドレス
  User katsuji
  IdentityFile ~/.ssh/cnh.pem #sshの公開鍵
  ServerAliveInterval 60 
  Port 443

接続

ssh ssh_katsujiで接続できる!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?