学校から接続するために、自宅のコンピューター(Lubuntu 12.04.1を実行)にopen-ssh-serverをインストールしました。これは私がsshd_configファイルを設定する方法です:
# Package generated configuration file
# See the sshd_config(5) manpage for details
# What ports, IPs and protocols we listen for
#Port 22
Port 2222
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_Host_rsa_key
HostKey /etc/ssh/ssh_Host_dsa_key
HostKey /etc/ssh/ssh_Host_ecdsa_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes
# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 768
# Logging
SyslogFacility AUTH
#LogLevel INFO
LogLevel VERBOSE
# Authentication:
LoginGraceTime 120
PermitRootLogin no
StrictModes yes
RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile %h/.ssh/authorized_keys
# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need Host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes
# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no
# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no
# Change to no to disable tunnelled clear text passwords
#PasswordAuthentication yes
# Kerberos options
#KerberosAuthentication no
#KerberosGetAFSToken no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes
# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes
X11Forwarding no
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no
#MaxStartups 10:30:60
#Banner /etc/issue.net
Banner /etc/sshbanner.net
# Allow client to pass locale environment variables
AcceptEnv LANG LC_*
Subsystem sftp /usr/lib/openssh/sftp-server
# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication. Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
UsePAM yes
#specify which accounts can use SSH
AllowUsers onlyme
また、ルーターのポート転送テーブルを次のように構成しました。
プライマリおよびセカンダリDNSを使用し、リモートポート2222-2222を指定して、他のさまざまな構成も試しました。また、TCP/UDPを試しました(ルーターはプロトコルごとに個別のルールを必要とするため、実際には2つのルール)。
ルーターポートフォワーディングの構成を使用して、次の方法でログインできます。
ssh -p 2222 -v localhost
しかし、学校からログインしようとすると
ssh -p 2222 onlyme@IP_ADDRESS
「ホストへのルートがありません」というメッセージが表示されます。 「ブロードキャストアドレス」または「デフォルトルート/プライマリDNS」を使用する場合も同じです。 「サブネットマスク」を使用すると、sshがハングします。ただし、「セカンダリDNS」を使用すると、「接続拒否」メッセージが表示されます。
:^(
誰かが私がこの仕事をする方法を理解するのを手伝ってください。
最後に、何が間違っていたかを見つけました。TCP/ IPについて何も知りませんでした。間違ったIPを使用していました。私のIPは動的であるため、Dropboxフォルダーにダンプするスクリプトを作成しました。だから私は学校からそれを取得してログインすることができます。
#!/usr/bin/Perl -w
use strict;
use LWP::Simple;
open( OFILE, ">/home/username/Dropbox/home.txt" ) || die "opening file $!";
print OFILE get("http://checkip.dyndns.com/");
close( OFILE );
LAN内からマシンに接続できるようになると、残りはそのマシンで実行されているUbuntuの制御の範囲外になります。そのため、問題はUbuntuボックスの外側にある可能性があります。考えられる原因は次のとおりです。
ルーターのポート転送が正しく構成されていません。再起動するとマシンの内部IPが変わる場合があります。特に、LANに複数のデバイスがある場合、ルーターのDHCPからアドレスが要求される順序に依存する場合があります。コンソールでifconfig
コマンドを使用して、IPアドレスを確認できます。
外部から接続しようとしたときに間違ったIPを使用している(実際には、「ホストへのルートがありません」というメッセージが強く示唆しています)。 Googleが「私のIPとは何か」を検索して、現在の外部IPが何であるかを示す多くのサイトの1つを見つけます。 ルータを再起動すると、外部IPが変更される場合があります。
「セキュリティ対策」として、一部のプロバイダーは、クライアントのポート(すべてのポートまたは既知のポートの範囲)への着信接続をブロックします。 ISPのコントロールパネルに設定があるか、これを把握するために呼び出す必要があります。
したがって、問題をデバッグする方法は次のとおりです。
traceroute
を使用してパケットがブロックされている場所を確認します(また、なぜDNSについて言及しているのかわかりません-すべてはプレーンIPアドレスを介して行われ、DNSはそれとはまったく関係ありません)
コメントを読む問題の一部は、間違ったIPを使用していることだと思います。 DNSは外部IPではなく、インターネット電話帳です。 Google.comにアクセスして、検索に「ip」と入力します。 Googleから外部IPが通知されます。
また、ライブラリに移動し、そのコンピューターのいずれかを使用して、ポータブルPuTTYクライアントをダウンロードします HERE (インストーラーを実行し、デスクトップをインストール場所として選択すると、ファイルがフォルダに抽出され、PuttyPortable.exeが実行されます)、それを使用してホームPCに接続してみてください。ほとんどのライブラリは、プログラムをPCにダウンロードするときに気に入らないので、それを行った後は必ず削除してください(ただし、チェックはしません)。
また、無料の5分間のセッションを提供するオンラインSSHクライアントもあり、ホームPCからそれらを試すことができます。ただし、セキュリティ上の理由から、パスワードを変更する前に一時的にパスワードを変更することもできます。