博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
xfreerdp的用法
阅读量:7099 次
发布时间:2019-06-28

本文共 2270 字,大约阅读时间需要 7 分钟。

[root@localhost ~]# xfreerdp 192.168.1.107 -u username  --sec nla

connected to 192.168.1.107:3389
Password:
SSL_read: Failure in SSL library (protocol error?)
Authentication failure, check credentials.
If credentials are valid, the NTLMSSP implementation may be to blame.

[root@localhost ~]# xfreerdp 192.168.1.107 -u username -p 123 -sec-nla
connected to 192.168.1.107:3389
Password:
SSL_read: Failure in SSL library (protocol error?)
Authentication failure, check credentials.
If credentials are valid, the NTLMSSP implementation may be to blame.

[root@localhost ~]# xfreerdp 192.168.1.107 -u username  /cert-ignore
connected to 192.168.1.107:3389
Password:
SSL_read: Failure in SSL library (protocol error?)
Authentication failure, check credentials.
If credentials are valid, the NTLMSSP implementation may be to blame.
[root@localhost ~]# xfreerdp 192.168.1.107 -u username  --no-tls
connected to 192.168.1.107:3389
Password:
SSL_read: Failure in SSL library (protocol error?)
Authentication failure, check credentials.
If credentials are valid, the NTLMSSP implementation may be to blame.
[root@localhost ~]# xfreerdp 192.168.1.107 -u username  --no-nla
connected to 192.168.1.107:3389
Password:
SSL_read: Failure in SSL library (protocol error?)
Authentication failure, check credentials.

If credentials are valid, the NTLMSSP implementation may be to blame.
[root@localhost ~]# xfreerdp -u username  --no-nla 192.168.1.107
connected to 192.168.1.107:3389

username是远程主机192.168.1.107的用户名,从以上过程可以看出来,最后一次尝试成功了。具体原因下面这个帖子回答了:

https://github.com/FreeRDP/FreeRDP/issues/2128

julianjm commented on May 31, 2016 ? edited

I had the same problem. It turns out that the order of the arguments is important:

Works: xfreerdp -u username -d domain rd.example.com

Doesn't work: xfreerdp rd.example.com -u username -d domain

Edited: better late than never. I obviously meant xfreerdp insted of rdesktop :(

dkwami commented on Aug 10, 2016

I thought the same thing, but changing the order of my arguments actually helped.
I've had the same problem going from ubuntu to windows server 2012 for a couple
of weeks. What finally worked for me was:
xfreerdp --sec nla --ignore-certificate -u username -d domain serverName
Thanks @julianjm!

转载于:https://www.cnblogs.com/daohan/p/7391166.html

你可能感兴趣的文章
EL表达式的一些知识
查看>>
web 中的认证方式
查看>>
node模块之path——path.join和path.resolve的区别
查看>>
SDNU 1292.圣诞老人
查看>>
BZOJ 3629 约数和定理+搜索
查看>>
ClientDemo
查看>>
mysql
查看>>
命令行的快速入门【第一天】
查看>>
Xml 丶json丶 C/S KVO 数据库 SQL 数据持久化 复杂对象 集合视图综合
查看>>
开源监控系统整合Nagios+Cacti+Nconf详解
查看>>
对于深入响应式原理的深刻理解
查看>>
初级AD域渗透系列
查看>>
题解 P1036 【选数】
查看>>
【算法学习笔记】25.贪心法 均分纸牌问题的分析
查看>>
width:100vh有感而发
查看>>
模仿京东淘宝的物流跟踪模板样式
查看>>
我的Android进阶之旅------> Android为TextView组件中显示的文本添加背景色
查看>>
Leangoo新功能-卡片ID
查看>>
Java多线程概述
查看>>
网络编程之FTP服务端与客户端
查看>>