web-dev-qa-db-ja.com

sshを使用してインターネット経由で別のコンピューターに接続する方法

ラップトップUbuntu 13.10があり、これを使用してUbuntu 12.04デスクトップに接続します。次を使用して、デスクトップマシンにopen ssh serverをインストールしました。

Sudo apt-get install openssh-server

サーバーが実行されていることを確認しました。

Sudo service ssh start

そして私は得る:

start: Job is already running: ssh

次に、以下を使用してファイアウォールがあるかどうかを確認しました。

Sudo ufw status

そして私は得る:

Status: inactive

次に、次を実行してデスクトップのIPアドレスを見つけました。

ip addr | grep inet

そして私は得る:

inet 127.0.0.1/8 scope Host lo
inet6 ::1/128 scope Host 
inet 193.51.236.62/24 brd 193.51.236.255 scope global eth0
inet6 fe80::21a:a0ff:fe10:e8da/64 scope link 

だから193.51.236.62が私のIPアドレスだと思う。

次に、ラップトップで193.51.236.62がping可能であることを確認してから、次のことを行います。

ssh -v [email protected]

そして私は得る:

OpenSSH_6.2p2 Ubuntu-6ubuntu0.1, OpenSSL 1.0.1e 11 Feb 2013
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to 193.51.236.62 [193.51.236.62] port 22.

そして、他に何も起きていないようです。この問題のトラブルシューティング方法を教えてください。何が間違っていますか?

編集:

サーバーマシンを安全にpingできます。

martin@martin-Studio-1537:~$ ping -c3 193.51.236.62
PING 193.51.236.62 (193.51.236.62) 56(84) bytes of data.
64 bytes from 193.51.236.62: icmp_seq=1 ttl=61 time=2.82 ms
64 bytes from 193.51.236.62: icmp_seq=2 ttl=61 time=4.05 ms
64 bytes from 193.51.236.62: icmp_seq=3 ttl=61 time=4.08 ms

--- 193.51.236.62 ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2002ms
rtt min/avg/max/mdev = 2.823/3.653/4.082/0.587 ms

EDIT2:

提案どおりnmapを使用して接続を診断しようとしました。

martin@martin-Studio-1537:~$ nmap 193.51.236.62

Starting Nmap 6.40 ( http://nmap.org ) at 2014-01-31 18:39 CET
Note: Host seems down. If it is really up, but blocking our ping probes, try -Pn
Nmap done: 1 IP address (0 hosts up) scanned in 3.06 seconds

その後:

martin@martin-Studio-1537:~$ nmap -Pn 193.51.236.62

Starting Nmap 6.40 ( http://nmap.org ) at 2014-01-31 18:40 CET
Nmap scan report for 193-51-236-62.lille.inria.fr (193.51.236.62)
Host is up (0.0056s latency).
Not shown: 998 filtered ports
PORT     STATE SERVICE
3128/tcp open  squid-http
8080/tcp open  http-proxy

Nmap done: 1 IP address (1 Host up) scanned in 8.18 seconds
6
Martin Drozdik

デスクトップにsshできるかどうかを確認することから始めますデスクトップから

ssh 127.0.0.1

それが機能する場合、外部IPと内部IPが異なるかどうかを確認します。

4
saiarcot895