我是一只小白兔~
分类: LINUX
2017-02-10 18:06:16
1. 使用yum安装telnet
yum -y install telnet-server*
2. 启动telnet服务
打开vi /etc/xinetd.d/telnet文件,将disable字段改为no
3.启动telnet服务
/etc/init.d/xinetd start
4.查看telnet服务是否启动
netstat -tnlp | grep :23
tcp 0 0 :::23 :::* LISTEN 5013/xinetd
5.关闭防火墙后,telnet才可以使用
service iptables stop #关闭防火墙
chkconfig iptables off #设置防火墙开机不启动
chkconfig xinetd on #设置telnet服务开机启动
vi
/etc/selinux/config
将SELINUX=enforcing修改为SELINUX=disabled
六、安装zlib
1.解压
tar -xvf zlib-1.2.11.tar.gz
cd zlib-1.2.11
2.配置
./configure
3.编译安装
make
make install
4.查看
ll /usr/local/lib
tar –xf openssl-fips-2.0.14.tar.gz
cd openssl-fips-2.0.14
2.配置
./config
3.编译安装
make
make install
1.解压
tar –xf openssl-1.0.2k.tar.gz
cd openssl-1.0.2k
2.配置
./config
3.编译安装
make
make install
4.设置软连接
ln -s /usr/local/ssl/bin/openssl /usr/bin/openssl #设置软连接,如果提示已存在,则无需再设置
5.查看新安装的openssl版本
openssl version –a1.解压
tar –xf openssh-7.4p1.tar.gz
cd openssh-7.4p1
2.编译
./configure --prefix=/usr --sysconfdir=/etc/ssh --with-md5-passwords --with-pam --with-tcp-wrappers --with-ssl-dir=/usr/local/ssl --without-hardening
3.编译安装
make
make install
4.修改配置文件
(1)备份sshd文件,重命名为sshd_20170209_old
mv /etc/init.d/sshd /etc/init.d/sshd_20170209_old
(2)复制配置文件、赋权、添加到开机启动项
cd /root/openssh-7.4p1/contrib/redhat
cp sshd.init /etc/init.d/sshd
chmod u+x /etc/init.d/sshd
chkconfig --add sshd
chkconfig sshd on
#备份原文件
mv /etc/ssh/ssh_config /etc/ssh/ssh_config_20170209_old
mv /etc/ssh/sshd_config /etc/ssh/sshd_config_20170209_old
cd /root/openssh-7.4p1
cp ssh_config /etc/ssh/ssh_config #根据提示,输入y进行覆盖(若对原文件重命名,则无需覆盖)
cp -p sshd_config /etc/ssh/sshd_config #根据提示,输入y进行覆盖(若对原文件重命名,则无需覆盖)
(3)查看安装后openssh版本
ssh –V
(4)设置允许root用户登录(openssh升级后,root默认被禁用)
打开vi /etc/ssh/sshd_config文件,将PermitRootLogin设置为yes
(5)重启SSH
service sshd restart
(6)重启机器
十、停止telnet服务
待确认新升级的OpenSSH版本可以正常使用时,然后停止telnet服务
1.修改配置文件
将vi /etc/xinetd.d/telnet文件中的disable = no修改为disable = yes
2.设置telnet开机不启动
chkconfig xinetd off
3.关闭telnet服务
/etc/init.d/xinetd stop
4.开启防火墙并设置开机自动启动
service iptables start
chkconfig iptables on