位置: 编程技术 - 正文

Linux服务器端SSH远程连接速度慢的解决方法(Linux服务器端口状态)

编辑:rootadmin

推荐整理分享Linux服务器端SSH远程连接速度慢的解决方法(Linux服务器端口状态),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:Linux服务器端口查询,Linux服务器端口查询,Linux服务器端口,Linux服务器端口查询,Linux服务器端口查看,Linux服务器端口,Linux服务器端口被占用怎么解决,Linux服务器端口怎么开放,内容如对您有帮助,希望把文章链接给更多的朋友!

解决方法:

1、在ssh服务端上更改/etc/ssh/sshd_config文件中的配置为如下内容:

复制代码代码如下:UseDNS no # GSSAPI options GSSAPIAuthentication no

然后,执行/etc/init.d/sshd restart重启sshd进程使上述配置生效,在连接一般就不慢了。

2、如果还慢的话,检查ssh服务端上/etc/hosts文件中,.0.0.1对应的主机名是否和 uname -n的结果一样,或者把本机ip和hostname(uname -n结果)加入到/etc/hosts里。

复制代码代码如下:[root@C ~]# uname -n C [root@C ~]# cat /etc/hosts #modi by oldboy : /9/ .0.0.1 C localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 .0.0. C ################

Linux服务器端SSH远程连接速度慢的解决方法(Linux服务器端口状态)

利用ssh -v的调试功能查找慢的原因

其实可以用下面的命令调试为什么慢的细节(学习这个思路很重要)。

复制代码代码如下:[root@C ~]# ssh -v root@.0.0. OpenSSH_5.3p1, OpenSSL 1.0.0-fips Mar debug1: Reading configuration data /etc/ssh/ssh_config debug1: Applying options for * debug1: Connecting to .0.0. [.0.0.] port . debug1: Connection established. debug1: permanently_set_uid: 0/0 debug1: identity file /root/.ssh/identity type -1 debug1: identity file /root/.ssh/id_rsa type -1 debug1: identity file /root/.ssh/id_dsa type -1 debug1: Remote protocol version 2.0, remote software version OpenSSH_4.3 debug1: match: OpenSSH_4.3 pat OpenSSH_4* debug1: Enabling compatibility mode for protocol 2.0 debug1: Local version string SSH-2.0-OpenSSH_5.3 debug1: SSH2_MSG_KEXINIT sent debug1: SSH2_MSG_KEXINIT received debug1: kex: server->client aes-ctr hmac-md5 none debug1: kex: client->server aes-ctr hmac-md5 none debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(<<) sent debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP debug1: SSH2_MSG_KEX_DH_GEX_INIT sent debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY The authenticity of host '.0.0. (.0.0.)' can't be established. RSA key fingerprint is ca::::0e:5a:1c:7d:ef:fc:::::ad:f9. Are you sure you want to continue connecting (yes/no)? yes =======>老男孩老师评:这里就是提示保存密钥的交互提示。 Warning: Permanently added '.0.0.' (RSA) to the list of known hosts. debug1: ssh_rsa_verify: signature correct debug1: SSH2_MSG_NEWKEYS sent debug1: expecting SSH2_MSG_NEWKEYS debug1: SSH2_MSG_NEWKEYS received debug1: SSH2_MSG_SERVICE_REQUEST sent debug1: SSH2_MSG_SERVICE_ACCEPT received debug1: Authentications that can continue: publickey,password debug1: Next authentication method: publickey debug1: Trying private key: /root/.ssh/identity debug1: Trying private key: /root/.ssh/id_rsa debug1: Trying private key: /root/.ssh/id_dsa debug1: Next authentication method: password root@.0.0.'s password: =======>老男孩老师评:这里就是提示输入密码的交互提示。 debug1: Authentication succeeded (password). debug1: channel 0: new [client-session] debug1: Entering interactive session. debug1: Sending environment. debug1: Sending env LANG = en_US.UTF-8 Last login: Tue Sep :: from .0.0.

在远程连接时如果慢就可以确定卡在哪了。

复制代码代码如下:[root@C_A ~]# ssh -v oldboy@.0.0. OpenSSH_5.3p1, OpenSSL 1.0.0-fips Mar debug1: Reading configuration data /etc/ssh/ssh_config debug1: Applying options for * debug1: Connecting to .0.0. [.0.0.] port . debug1: Connection established. debug1: permanently_set_uid: 0/0 debug1: identity file /root/.ssh/identity type -1 debug1: identity file /root/.ssh/id_rsa type -1 debug1: identity file /root/.ssh/id_dsa type 2 debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3 debug1: match: OpenSSH_5.3 pat OpenSSH* debug1: Enabling compatibility mode for protocol 2.0 debug1: Local version string SSH-2.0-OpenSSH_5.3 debug1: SSH2_MSG_KEXINIT sent debug1: SSH2_MSG_KEXINIT received debug1: kex: server->client aes-ctr hmac-md5 none debug1: kex: client->server aes-ctr hmac-md5 none debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(<<) sent debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP debug1: SSH2_MSG_KEX_DH_GEX_INIT sent debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY debug1: Host '.0.0.' is known and matches the RSA host key. debug1: Found key in /root/.ssh/known_hosts:2 debug1: ssh_rsa_verify: signature correct debug1: SSH2_MSG_NEWKEYS sent debug1: expecting SSH2_MSG_NEWKEYS debug1: SSH2_MSG_NEWKEYS received debug1: SSH2_MSG_SERVICE_REQUEST sent debug1: SSH2_MSG_SERVICE_ACCEPT received debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,password debug1: Next authentication method: gssapi-keyex debug1: No valid Key exchange context debug1: Next authentication method: gssapi-with-mic

上述配置没配就发现卡到gssapi这。就大概知道是gssapi的问题。

实际上在linux系统优化部分就应该优化SSH服务的此处。

在Linux 中产生和加密解密随机密码的教程 1.使用命令pwgen来生成一个长度为个字符的独特的随机密码。假如你还没有安装pwgen,请使用Apt或YUM等包管理器来安装它。复制代码代码如下:$pwgen生

在Linux服务器上升级Docker的教程 Docker,一个流行的将软件打包的开源容器平台,已经有了新的1.6版,增加了许多新的特性。该版本主要更新了DockerRegistry、Engine、Swarm、Compose和Machine等

Linux下5个有趣的命令行技巧介绍 你有将Linux物尽其用吗?对很多Linux用户来说,有很多看起来是技巧的有用特性。有些时候你会需要这些技巧。本文会帮助你更好得使用一些命令,发挥

标签: Linux服务器端口状态

本文链接地址:https://www.jiuchutong.com/biancheng/366121.html 转载请保留说明!

上一篇:win10怎么分屏? win10分屏快捷键的使用方法(win10怎么分屏操作)

下一篇:在Linux 中产生和加密解密随机密码的教程(在linux系统中)

  • 未确认融资费用和长期应付款
  • 营业税金及附加怎么计提
  • 将自产货物赠送客户
  • 企业如何代扣代缴个人所得税20%
  • 国际货运代理可以开免税吗
  • 个人支付宝开票的后果
  • 公司财务外包费怎么入账
  • 小规模纳税人税率有几种
  • 发票认证后怎么打明细
  • 小微企业免征税怎么做会计分录
  • 住房公积金在个税中如何扣除
  • 定期存款准备金是什么
  • 购买润滑油分录
  • 新公司法注册资本认缴制
  • 装修费可以一次性计入费用吗
  • 企业购车票可以抵扣增值税吗?
  • 营改增通知规定的税收优惠政策
  • 企业向国有银行贷款的利率
  • 一般个体户核定税率多少
  • 试营业期间的费用算不算开办费?
  • 公共基础设施折旧年限表 20
  • 集团公司收取管理费是否可以税前列支
  • 一次发放数月的高温津贴如何计算个税?
  • 专用发票当月认证,下月申报抵扣可以吗
  • 财政指标文和拨款流程
  • 电脑开机后一直滴滴
  • 银行存款转定期存款计入什么科目
  • windows11 怎么更新
  • php-ml
  • 电脑怎样设置共享文件夹
  • php中如何获取数组的长度
  • qq2440启动linux后插入u盘出现usb 1-1: device descriptor read/64, error -110,usb 1
  • 房产营销策划经典案例
  • 记账凭证的总账科目是什么
  • 企业股权转让所得可以弥补亏损吗
  • 福利费需要缴税吗
  • 编译安装php8
  • php gd
  • 公章的法律效力范围
  • 库存现金账务处理案例
  • vue懒加载机构树刷新
  • 增值税专用发票几个点
  • 财务报表季报利润表本月金额怎么填
  • 增值税普通发票和普通发票一样吗
  • 织梦自定义字段
  • 进口消费税应该记到什么科目
  • 定额的个体户怎么交税
  • 职工教育经费和职工福利费扣除比例
  • 企业交房租没有发票能充费用吗
  • 2022年山东省固定资产投资额
  • 公司向个人借款怎么做账
  • 对公账户有法律效力吗
  • 药品进销差价会计科目
  • 增值税进项税转出有哪些
  • 增资减资改变股东要交税吗
  • 房地产行业扣税标准
  • 认缴制下实收资本可以减少吗
  • 新建企业应如何建账
  • 新组建的公司该怎样开展工作
  • mysql太慢
  • freebsd版本
  • 移动u盘的作用
  • SmoothView.exe - SmoothView是什么进程
  • window8怎么样
  • win7笔记本任务管理器
  • logd是什么进程
  • win7win8双系统怎么装
  • win10mobile官网
  • 正二十面体怎么建模
  • Extjs中通过Tree加载右侧TabPanel具体实现
  • android opencl
  • unity3D游戏开发
  • linux 进程监控
  • jquery-easyui-1.3.3
  • 完美世界打斗
  • javascript教程完整版
  • 外贸企业出口退税流程及账务处理
  • 12366电子税务局重庆
  • 国地税发展历程
  • 纪检组长如何监督党员
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设