All SSH servers on the internet are heavily targeted for brute-force cracking of passwords.すべてのSSHサーバーを、インターネット上のターゲットを絞った力任せの意見が大きく割れのパスワードです。 Easy passwords can and are often cracked to gain full control over the machine.ひびの入った簡単なパスワードを得ることとは、しばしば完全に制御する機械です。 Here is a simple hack to thwart most of such hacking attempts.次に示すのは、ほとんどのような単純なハックをハッキングの試みを阻止します。

Change the default port of ssh to a non-standard port greater than 1024.デフォルトのポートのsshを変更するにして非標準のポート1024を超える。 Most hacking scripts target port 22, which is the default ssh port, for brute-force attacks.ほとんどのハッキングスクリプト対象のポート22日、これは、デフォルトのSSHポートは、力任せの攻撃です。

Open file /etc/ssh/sshd_config and add / change the Port line as follows:開いているファイルは/ etc / ssh / sshd_configに、追加/変更してポートライン以下のとおり:
Port 1234 ポート1234

Replace 1234 with an unique number greater than 1024. 1234固有の番号に置き換えます1024を超える。 My server used to be subjected to thousands of hacking attempts daily.私のサーバーを使用して数千人のハッキングの試みにさらされる毎日です。 After the changes it has dropped almost to zero.それが下落した後、ほとんどをゼロに変更します。 Sometimes a simple solution is all it takes to solve your complex problem.時には、単純な解決策はすべてのお客様の複雑な問題を解決するためにかかる。