8
6

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.

疎通確認コマンドまとめ

Posted at

ssh

他のコンピュータやサーバに遠隔でログインし、操作するためのコマンド。
通信は暗号化される。
デフォルトのポート番号は22を利用する。

ssh [オプション] 接続先 [接続先で実行したいコマンド]
ssh [オプション] [ログイン名@]接続先 [接続先で実行したいコマンド]

telnet

他のコンピュータやサーバに遠隔でログインし、操作するためのコマンド。
sshとは違い、通信が暗号化されていない。
デフォルトのポート番号は23を利用する。

telnet [オプション] 接続先 [ポート番号]

ping

宛先までIPパケットが到達するかどうかを確認するために使うコマンド。

ping [オプション] 接続先

nslookup

DNSサーバに名前解決を問い合わせるコマンド。

nslookup [オプション] [ドメイン名またはIPアドレス] [DNSサーバ]

curl

curlコマンドとはサーバから、もしくはサーバへデータ転送を行うコマンド。

curl -O [オプション] URL

traceroute

操作中の端末から目的のサーバまでのネットワーク経路を調べるコマンド。

traceroute [オプション] 接続先

参考

【基礎】他サーバとの疎通確認方法まとめ

8
6
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
8
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?