17
15

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

Macからubuntuにsshで接続する

Last updated at Posted at 2016-04-15

#目的
Macからubuntuにsshで接続する
ポート番号の設定

#環境
ubuntuバージョン:14.04LTS(サーバ用)
MacBook Pro(アクセス用)

##sshのインストールとポート番号の変更

###OpenSSHをインストール
$ sudo apt-get install openssh-server

###sshのポート番号の変更
その前にバックアップを取っておくと良い
$ cp /etc/ssh/sshd_config /etc/ssh/sshd_config.org

###ポート番号の変更
ポート番号は1024〜65535のいずれか(使用していないポート番号)
$ sudo vim /etc/ssh/sshd_config

ポート番号22から使用したいポートに変更
Port 22 → Port 使用したいポート番号

##sshでログイン
自分のPC(Mac)からubuntuにsshで接続してみる
$ ssh -p ポート番号 サーバ名@グローバルIPアドレス
パスワードの入力をしてログイン完了

※あくまでメモとして書いてますので、間違っている箇所もあると思います。

17
15
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
17
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?