forked from aqzt/kjyw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update-ssh-el7.sh
56 lines (50 loc) · 1.62 KB
/
update-ssh-el7.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/bash
# Centos7下Openssh-8.2p1离线rpm安装包下载
# https://aq2.cn/132.html
NowTime=$(/bin/date +%Y%m%d%H%M%S)
if [[ "$(whoami)" != "root" ]]; then
echo "please run this script as root !" >&2
exit 1
fi
if [[ ! -f /usr/bin/cp ]]; then
echo "/usr/bin/cp file exists" >&2
exit 1
fi
if [[ ! -d "/opt/backup/openssh_bak" ]];then
mkdir -p /opt/backup/openssh_bak/
/usr/bin/cp /etc/pam.d/sshd /opt/backup/openssh_bak/sshd.bak
/usr/bin/cp /etc/pam.d/system-auth /opt/backup/openssh_bak/system-auth.bak
/usr/bin/cp /etc/ssh/sshd_config /opt/backup/openssh_bak/
/usr/bin/cp /etc/ssh/ssh_config /opt/backup/openssh_bak/
/usr/bin/cp /etc/ssh/ssh*key /opt/backup/openssh_bak/
else
mkdir -p "/opt/backup/openssh_$NowTime/"
/usr/bin/cp /etc/pam.d/sshd "/opt/backup/openssh_$NowTime/sshd.bak"
/usr/bin/cp /etc/pam.d/system-auth "/opt/backup/openssh_$NowTime/system-auth.bak"
/usr/bin/cp /etc/ssh/sshd_config "/opt/backup/openssh_$NowTime/"
/usr/bin/cp /etc/ssh/ssh_config "/opt/backup/openssh_$NowTime/"
/usr/bin/cp /etc/ssh/ssh*key "/opt/backup/openssh_$NowTime/"
fi
yum localinstall openssh-*.rpm -y
chmod 600 /etc/ssh/ssh_host_*_key
/usr/bin/cp /opt/backup/openssh_bak/sshd.bak /etc/pam.d/sshd
echo -e '
Port 22
AddressFamily inet
ListenAddress 0.0.0.0
Protocol 2
SyslogFacility AUTHPRIV
PermitRootLogin yes
MaxAuthTries 6
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys
PasswordAuthentication yes
PermitEmptyPasswords no
UsePAM yes
UseDNS no
X11Forwarding yes
Subsystem sftp /usr/libexec/openssh/sftp-server
' > /etc/ssh/sshd_config
systemctl enable sshd
systemctl restart sshd
ssh -V