2
1

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 3 years have passed since last update.

Linuxでsshサーバをたてよう

Posted at

#今回の目的
Linux(Ubuntu18.04.3)でLAN内でsshサーバーを立ててMacからログインしよう

#sshサーバーをたてましょう
まずは下のコマンドでパッケージをインストールしてからサービスを起動させましょう

# sudo apt-get install openssh-server
# systemctrl start ssh

ちなみに、サービスを止めたり、ステータスを確認するには下のコマンドで可能です

# systemctrl stop ssh
# systemctrl status ssh

systemctrlでサービスの設定を変更することが可能です

#別のデバイスからsshでログインしましょう
今回は、Macのターミナルを使ってログインします

# ssh -l xxx IPアドレス

上のコマンドを実行すればLAN内のデバイスからならssh接続可能です。
xxxはリモートホストのログイン名になります。-lオプションはログイン名を指定するために必要です。
あとは、パスワードを入力して完了です。

#Next
ローカルのsshは家にサーバーがある人用ですね。
外部からのssh接続も挑戦してみます。

2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?