使用 ssh 不用输入密码.docx

上传人:b****5 文档编号:12568508 上传时间:2023-04-20 格式:DOCX 页数:14 大小:51.61KB
下载 相关 举报
使用 ssh 不用输入密码.docx_第1页
第1页 / 共14页
使用 ssh 不用输入密码.docx_第2页
第2页 / 共14页
使用 ssh 不用输入密码.docx_第3页
第3页 / 共14页
使用 ssh 不用输入密码.docx_第4页
第4页 / 共14页
使用 ssh 不用输入密码.docx_第5页
第5页 / 共14页
点击查看更多>>
下载资源
资源描述

使用 ssh 不用输入密码.docx

《使用 ssh 不用输入密码.docx》由会员分享,可在线阅读,更多相关《使用 ssh 不用输入密码.docx(14页珍藏版)》请在冰豆网上搜索。

使用 ssh 不用输入密码.docx

使用ssh不用输入密码

使用ssh不用输入密码--putty版

很多朋友都用是 putty 在 windows 上登陆 Linux/Unix 来管理的. 

以前写过一个在 Linux 上用 ssh-keygen 生成 public/private 对来做为认证, 而不用输入密码的帖子. 好多朋友就想知道怎么让 putty 也能这样. 小弟这几天有空, 试了一下. 特将步骤写下, 仅供参考. 

1. 生成 public/private 对. 

这个好办, puttygen 就行了. 出现如图

(1)的界面. 然后选中下面的 SSH2RSA, 再点击 Generate 就会生成如图

(2)的界面. 这个过程中要不停的动鼠标, 因为它好象是用这个做为随机数的种子的. 然后点击Save private key 来保存私钥. 公钥可以保存, 也可以不保存. 全部选中如图

(2)的蓝色部分. 然后 ctrl+c 保存到剪贴板. 登陆到你想要访问的主机上, 打开 ~/.ssh/authorized_keys 文件, 将刚刚保存到剪贴板的东东粘贴过去. 保存后就行了. 

2. 访问.

这个比在 Linux 上要麻烦一点. 因为没有默认的用户名, 也没用默认的 home. 所以, 用如下语法来访问. 

putty -i c:

\usr\bin\ssh-private.ppk -l wangzw 192.168.21.33

其中 192.168.21.33 是主机IP(主机名也可以), -l wangzw 是用户名,  -i c:

\usr\bin\ssh-private.ppk 是指定用哪个 key 来认证. 

这样就搞定了. 

因为那个进入的语法太麻烦, 小弟干脆写了一个 linux.bat 文件, 里面就只有那一行. 然后把这个文件放在桌面上, 鼠标双击就进入 Linux 了.  :

em11:

  :

em11:

 

putty 的说明里还有什么用 pagnet 来保存 key 的, 我没细看, 有兴趣的朋友可以看一下. 

1、保存Session后,可以用putty @sessionname直接连接,不用那么复杂的命令行

2、记得chmod 700 ~/.ssh && chmod 600 ~/.ssh/authorized_keys,要不然酒会出现server refuse our key的错误。

2、弹弓呀,在bat中写成这样就不出现黑框框了呀,用start:

start D:

\putty\putty.exe -i D:

\putty\mykeys\126-ssh-private.ppk -l root 192.168.168.126

SSH的一些安全小技巧

一, 前言

關於 ssh 的好處, 相信不用我多說了吧?

 

簡而言之, 之前的 rpc command 與 telnet 都全可用 ssh 代替.

比方如下的這些常見功能:

- 遠端登錄

ssh user@remote.machine

- 遠端執行

ssh user@remote.machine 'command ...'

- 遠端複制

scp user@remote.machine:

/remote/path /local/path

scp /local/path user@remote.machine:

/remote/path

- X forward

ssh -X user@remote.machine

xcommand ...

- Tunnel / Portforward

ssh -L 1234:

remote.machine:

4321 user@remote.machine

ssh -R 1234:

local.machine:

4321 user@remote.machine

ssh -L 1234:

other.machine:

4321 user@remote.machine

至於詳細的用法, 我這就不說了. 請讀者自行研究吧.

我這裡要說的, 是針對 ssh 服務為大家介紹一些安全技巧, 希望大家用得更安心些.

二, 實作

(實作以 RedHat 9 為範例)

1) 禁止 root 登錄

# vi /etc/ssh/sshd_config

PermitRootLogin no

2) 廢除密碼登錄, 強迫使用 RSA 驗證(假設 ssh 帳戶為 user1 )

# vi /etc/ssh/sshd_config

RSAAuthentication yes

PubkeyAuthentication yes

AuthorizedKeysFile     .ssh/authorized_keys

PasswordAuthentication no

# service sshd restart

# su - user1

$ mkdir ~/.ssh 2>;/dev/null

$ chmod 700 ~/.ssh

$ touch ~/.ssh/authorized_keys

$ chmod 644 ~/.ssh/authorized_keys

--------------------------------------------------

轉往 client 端:

$ ssh-keygen -t rsa

(按三下 enter 完成﹔不需設密碼,除非您會用 ssh-agent 。

$ scp ~/.ssh/id_rsa.pub user1@server.machine:

id_rsa.pub

(若是 windows client, 可用 puttygen.exe 產生 public key, 

然後複制到 server 端後修改之, 使其內容成為單一一行.)

---------------------------------------------------

回到 server 端:

$ cat ~/id_rsa.pub >;>; ~/.ssh/authorized_keys

$ rm ~/id_rsa.pub

$ exit

3) 限制 su / sudo 名單:

# vi /etc/pam.d/su

auth       required     /lib/security/$ISA/pam_wheel.so use_uid

# visudo

%wheel  ALL=(ALL)       ALL

# gpasswd -a user1 wheel

4) 限制 ssh 使用者名單

# vi /etc/pam.d/sshd

auth       required     pam_listfile.so item=user sense=allow file=/etc/ssh_users onerr=fail

# echo user1 >;>; /etc/ssh_users

5) 封鎖 ssh 連線並改用 web 控管清單

# iptables -I INPUT -p tcp --dport 22 -j DROP

# mkdir /var/www/html/ssh_open

# cat >; /var/www/html/ssh_open/.htaccess <

AuthName "ssh_open"

AuthUserFile /var/www/html/ssh_open/.htpasswd

AuthType basic

require valid-user

END

# htpasswd -c /var/www/html/ssh_open/.htpasswd user1

(最好還將 SSL 設起來, 或只限 https 連線更佳, 我這裡略過 SSL 設定, 請讀者自補.)

(如需控制連線來源, 那請再補 Allow/Deny 項目, 也請讀者自補.)

# cat >; /var/www/html/ssh_open/ssh_open.php <

//Set dir path for ip list

$dir_path=".";

//Set filename for ip list

$ip_list="ssh_open.txt";

//Get client ip

$user_ip=$_SERVER['REMOTE_ADDR'];

//allow specifying ip if needed

if (@$_GET['myip']) {

$user_ip=$_GET['myip'];

}

//checking IP format

if ($user_ip==long2ip(ip2long($user_ip))) {

//Put client ip to a file

if(@!

($file = fopen("$dir_path/$ip_list","w+")))

{

        echo "Permission denied!

!


;";

        echo "Pls Check your rights to dir $dir_path or file $ip_list";

}

else

{

        fputs($file,"$user_ip");

        fclose($file);

        echo "client ip($user_ip) has put into $dir_path/$ip_list";

}

} else {

echo "Invalid IP format!

!


;ssh_open.txt was not changed.";

}

?

>; 

END

# touch /var/www/html/ssh_open/ssh_open.txt

# chmod 640 /var/www/html/ssh_open/*

# chgrp apache /var/www/html/ssh_open/*

# chmod g+w /var/www/html/ssh_open/ssh_open.txt

# chmod o+t /var/www/html/ssh_open

# service httpd restart

# mkdir /etc/iptables

# cat >; /etc/iptables/sshopen.sh <

#!

/bin/bash

PATH=/sbin:

/bin:

/usr/sbin:

/usr/bin

list_dir=/var/www/html/ssh_open

list_file=$list_dir/ssh_open.txt

chain_name=ssh_rules

mail_to=root

# clear chain if exits, or create chain.

iptables -L -n | /bin/grep -q "^Chain $chain_name" && {

        iptables -F $chain_name

        true

} || {

        iptables -N $chain_name

        iptables -I INPUT -p tcp --dport 22 -j $chain_name

}

# clear chain when needed

[ "$1" = clear ] && {

        iptables -F $chain_name

        exit 0

}

# do nothing while list is empty

[ -s $list_file ] || exit 1

# add rule

iptables -A $chain_name -p tcp --dport 22 -s $(< $list_file) -j ACCEPT && \

echo "ssh opened to $(< $list_file) on $(date)" | mail -s "sshopen" $mail_to

END

# chmod +x /etc/iptables/sshopen.sh

# echo -e 'sshopen\t\t1234/tcp' >;>; /etc/services

# cat >; /etc/xinetd.d/sshopen <

service sshopen

{

        disable = no

        socket_type     = stream

        protocol        = tcp

        wait            = no

        user            = root

        server          = /etc/iptables/sshopen.sh

}

# iptables -I INPUT -p tcp --dport 1234 -j ACCEPT

# cat >; /etc/cron.d/sshopen <

*/5 * * * *     root    /etc/iptables/sshopen.sh clear

END

---------------------------

轉往 client 端

在 browser URL 輸入:

http:

//server.machine/ssh_open/ssh_open.php?

myip=1.2.3.4

(若不指定 ?

myip=1.2.3.4 則以 client 當時 IP 為準, 若沒經 proxy 的話.)

如此, server 端的 ssh_open.txt 文件只有單一記錄, 每次蓋寫. 

接著:

$ telnet server.machine 1234

然後你有最多 5 分鐘時間用 ssh 連線 server !

---------------------------

此步驟的基本構思如下:

5.1) 將 sshd 的 firewall 連線全部 block 掉. 

5.2) 然後在 httpd 那設一個 directory, 可設 ssl+htpasswd+allow/deny control, 

然後在目錄內寫一個 php 將 browser ip 記錄於一份 .txt 文字檔裡. 

視你的轉寫能力, 你可自動抓取 browser 端的 IP, 也可讓 browser 端傳入參數來指定. 

文字檔只有單一記錄, 每次蓋寫. 

5.3) 修改 /etc/services , 增加一個新項目(如 xxx), 並指定一個新 port(如 1234) 

5.4) 再用 xinetd 監聽該 port , 並啟動令一隻 script, 設定 iptables , 從 step2 的清單裡取得 IP, 為之打開 ssh 連線. 

5.5) 設 crontab 每數分中清理 iptables 關於 ssh 連線的規則. 這並不影響既有連線, 若逾時再連, 則重複上述. 

6) 要是上一步驟沒設定, 你或許會擔心過多的人來 try 你的 ssh 服務的話:

# cat >; /etc/iptables/sshblock.sh <

#!

/bin/bash 

PATH=/sbin:

/bin:

/usr/sbin:

/usr/bin 

LOG_FILE=/var/log/secure 

KEY_WORD="Illegal user" 

KEY_WORD1="Failed password for root" 

PERM_LIST=/etc/firewall/bad.list.perm 

LIMIT=5 

MAIL_TO=root 

IPT_SAV="$(iptables-save)" 

bad_list=$(egrep "$KEY_WORD" $LOG_FILE | awk '{print $NF}' | xargs) 

bad_list1=$(egrep "$KEY_WORD1" $LOG_FILE | awk '{print $11}' | xargs) 

bad_list="$bad_list $bad_list1" 

for i in $(echo -e "${bad_list// /\n}" | sort -u) 

do 

        hit=$(echo $bad_list | egrep -o "$i" | wc -l) 

        [ "$hit" -ge "$LIMIT" ] && { 

                echo "$IPT_SAV" | grep -q "$i .*-j DROP" || { 

                        echo -e "\n$i was dropped on $(date)\n" | mail -s "DROP by ${0##*/}:

 $i" $MAIL_TO 

                        iptables -I INPUT -s $i -j DROP 

                } 

                egrep -q "^$i$" $PERM_LIST || echo $i >;>; $PERM_LIST 

        } 

done

END

# chmod +x /etc/firewall/sshblock.sh

# cat >;>; /etc/hosts.allow <

sshd:

 ALL:

 spawn ( /etc/firewall/sshblock.sh )& :

 ALLOW

END

這樣, 那些亂 try SSH 的家夥, 頂多能試 5 次(LIMIT 可調整), 然後就給 BLOCK 掉了. 

此外, 在 PERM_LIST 的 ip, 也可提供給 iptables 的初始 script , 來個永久性封閉:

 

for i in $(< $PERM_LIST) 

do 

        /sbin/iptables -I INPUT -s $i -j DROP 

done  

7) 還有, 你想知道有哪些人對你做 full range port scan 的話:

 

# iptables -I INPUT -p tcp --dport 79 -j ACCEPT 

cat >; /etc/xinetd.d/finger <

service finger 

        socket_type     = stream 

        wait            = no 

        user            = nobody 

        server          = /usr/sbin/in.fingerd 

        disable         = no 

END 

# cat >;>; /etc/hosts.allow <

in.fingerd:

 ALL :

 spawn ( echo -e "\nWARNING %a was trying finger.\n$(date)" | mail -s "finger from %a" root ) & :

 DENY 

END

這裡, 我只是設為發信給 root. 

事實上, 你可修改為起動 firewall 將 %a 這個傳回值給 ban 掉也行. 

不過, 對方要是有選擇性的做 port scan , 沒掃到 finger 的話, 那當然就沒用了

 

RedhatEL4下实现sshchroot登陆

刚一个朋友在QQ上问起Linux 下 ssh chroot 实现的问题,

经过研究实现,在这里把步骤写下来希望能对大家起到抛砖引玉的做用  :

实现步骤如下:

     1.创建用户abc ,主目录为/home/abc

     2.用root用户建立目录 /var/chroot ,  /var/chroot/lib, /var/chroot/bin,/var/chroot/etc,/var/chroot/home/abc

     3. 把/lib 下 libc.so.6,ld-linux.so.2,libdl.so.2,libtermcap.so.2(为ldd /bin/bash的结果) 拷贝到 /var/chroot/lib下

     4. tail -1 /etc/passwd >;/var/chroot/etc/passwd

      

     5. 修改/etc/pam.d/sshd 在末尾加上一句

          session   required    pam_chroot.so

     6.修改/etc/security/chroot.conf

       增加 一行 abc        /var/chroot  保存后,使用abc 通过ssh 登录即可

 sainux回复于:

2005-09-0712:

04:

04

让你熬到那么晚真是不好意思~~~~

今天早上我按照你给的步骤试了,从Windows下的SSH终端登录,输入密码后显示没有/bin/bash文件,cp了个bash文件到/chroot/bin后可以登录了。

但是用SSH file transfer输入密码后提示Failed to open a secure file transfer session. 问题应该出在哪里呢?

 怎么才能让file transfer可以正常使用呢?

 compnik回复于:

2005-09-0713:

35:

12

是要把bash拷过去的,我忘写了,你要 chown abc /var/chroot/home/abc 的

 compnik回复于:

2005-09-0714:

19:

02

mkdir -p /var/chroot/usr/libexec/openssh

cp /usr/libexec/openssh/sftp-server /var/chroot/usr/libexec/openssh

find /lib/ -maxdepth 1 \( -type f -o -type l \) -exec ln {} /var/chroot/lib \;

find /usr/lib/ -maxdepth 1 \( -type f -o -type l \) -exec ln {} /var/chroot/lib \;

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 幼儿教育 > 唐诗宋词

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1