Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
网络学习营
libcurl2rtt包使用DNS问题
发布于 2020-06-18 09:15:44 浏览:1701
订阅该版
Hello 各位RTT的大神指教一下: 1.移植的libcurl2rtt包,dns服务总是过不了,直接`ping www.rt-thread.com`都能通. ``` msh />curl --verbose -k --capath ./ [https://www.rt-thread.com/service/rt-thread.txt](https://www.rt-thread.com/service/rt-thread.txt) * timeout on name lookup is not supported * Curl_ipv4_resolve_r failed for [www.rt-thread.com](www.rt-thread.com) * Couldn't resolve host 'www.rt-thread.com' * Closing connection 0 curl: (6) Couldn't resolve host 'www.rt-thread.com' msh />ping [www.rt-thread.com](www.rt-thread.com) 60 bytes from 118.31.15.152 icmp_seq=0 ttl=49 time=60 ms 60 bytes from 118.31.15.152 icmp_seq=1 ttl=49 time=30 ms 60 bytes from 118.31.15.152 icmp_seq=2 ttl=49 time=30 ms 60 bytes from 118.31.15.152 icmp_seq=3 ttl=49 time=30 ms ```
查看更多
4
个回答
默认排序
按发布时间排序
liu2guang
认证专家
2020-06-18
这家伙很懒,什么也没写!
在qemu中测试,证书DIGICERT_ROOT_CA.cer放到 ./ 目录下调用 curl --verbose -k --capath ./ [https://www.rt-thread.com/service/rt-thread.txt](https://www.rt-thread.com/service/rt-thread.txt) 是没有问题的。你试试qemu跑把 [attach]15803[/attach]
aozima
2020-06-18
调网络不抓包,调I2C等时序不上逻辑分析仪,就像电工不用万用表!多用整理的好的文字,比截图更省流量,还能在整理过程中思考。
楼主这里好像是dns解析不出来,还没到证书那阶段。
芋圆源钰
2020-06-19
这家伙很懒,什么也没写!
>在qemu中测试,证书DIGICERT_ROOT_CA.cer放到 ./ 目录下调用 curl --verbose -k --capath ./ https://www.r ... 谢谢你的回复, 1.我这里是DNS解析不了. 2.你图里面执行时加了-k参数是跳过证书了额.
芋圆源钰
2020-06-19
这家伙很懒,什么也没写!
>楼主这里好像是dns解析不出来,还没到证书那阶段。 --- 是的呢,直接ping [www.rt-thread.com](www.rt-thread.com)都能正常解析. 不清楚是否这个包的那个配置有问题.还请指教.
芋圆源钰
2020-07-01
这家伙很懒,什么也没写!
查了一周,还是老老实实跟代码发先就是一个宏的问题. ```patch +++ b/source/ekernel/subsys/net/rt-thread/net_tools/netutils-master/libcurl2rtt-latest/curl/curl_config.h @@ -30,7 +30,7 @@ #define HAVE_FCNTL_O_NONBLOCK 1 /* Define to 1 if you have the gethostbyname_r function. */ -#define HAVE_GETHOSTBYNAME_R 1 +//#define HAVE_GETHOSTBYNAME_R 1 ``` 注释后测试已正常: ``` msh />curl --verbose -k --capath ./ [https://www.rt-thread.com/service/rt-thread.txt](https://www.rt-thread.com/service/rt-thread.txt) * timeout on name lookup is not supported * Trying 118.31.15.152:443... * TCP_NODELAY set * Connected to [http://www.rt-thread.com](www.rt-thread.com) () port 443 (#0) * mbedTLS: Connecting to [http://www.rt-thread.com:443](www.rt-thread.com:443) * mbedTLS: Set min SSL version to TLS 1.0 * mbedTLS: Handshake complete, cipher is TLS-ECDHE-RSA-WITH-AES-128-GCM-SHA256 * Dumping cert info: * cert. version : 3 * serial number : 06:43:FD:59:D0:4D:C8:94:2F:54:BA:AF:82:55:72:0E * issuer name : C=US, O=DigiCert Inc, OU=www.digicert.com, CN=Encryption Everywhere DV TLS CA - G1 * subject name : CN=www.rt-thread.com * issued on : 2020-06-21 00:00:00 * expires on : 2021-06-22 12:00:00 * signed using : RSA with SHA-256 * RSA key size : 2048 bits * basic constraints : CA=false * subject alt name : [http://www.rt-thread.com](www.rt-thread.com), rt-thread.com * key usage : Digital Signature, Key Encipherment * ext key usage : TLS Web Server Authentication, TLS Web Client Authentication * SSL connected > GET /service/rt-thread.txt HTTP/1.1 > Host: [http://www.rt-thread.com](www.rt-thread.com) > User-Agent: curl/7.67.0-DEV > Accept: */* > * Mark bundle as not supporting multiuse < HTTP/1.1 200 OK < Server: nginx/1.10.3 (Ubuntu) < Date: Wed, 01 Jul 2020 07:50:41 GMT < Content-Type: text/plain < Content-Length: 267 < Connection: keep-alive < Last-Modified: Tue, 18 Sep 2018 03:55:48 GMT < ETag: "10b-5761d43d95900" < Accept-Ranges: bytes < Vary: Accept-Encoding < RT-Thread is an open source IoT operating system from China, which has strong scalability: from a tiny kernel running on a tiny core, for example ARM Cortex-M0, or Cortex-M3/4/7, to a rich feature system running on MIPS32, ARM Cortex-A8, ARM Cortex-A9 DualCore etc. ``` 发现一个新问题: 直接用ip地址代替rt-thread.com出现301返回码? ``` msh />curl --verbose -k --capath ./ [https://118.31.15.152/service/rt-thread.txt](https://118.31.15.152/service/rt-thread.txt) * timeout on name lookup is not supported * Trying 118.31.15.152:443... * TCP_NODELAY set * Connected to 118.31.15.152 () port 443 (#0) * mbedTLS: Connecting to 118.31.15.152:443 * mbedTLS: Set min SSL version to TLS 1.0 * mbedTLS: Handshake complete, cipher is TLS-ECDHE-RSA-WITH-AES-256-GCM-SHA384 * Dumping cert info: * cert. version : 3 * serial number : 09:2F:6D:AE:96:EC:D7:D0:24:55:D2:F5:64:20:50:23 * issuer name : C=US, O=DigiCert Inc, OU=www.digicert.com, CN=RapidSSL RSA CA 2018 * subject name : CN=*.rt-thread.org * issued on : 2020-06-05 00:00:00 * expires on : 2021-06-05 12:00:00 * signed using : RSA with SHA-256 * RSA key size : 2048 bits * basic constraints : CA=false * subject alt name : *.rt-thread.org, rt-thread.org * key usage : Digital Signature, Key Encipherment * ext key usage : TLS Web Server Authentication, TLS Web Client Authentication * SSL connected > GET /service/rt-thread.txt HTTP/1.1 > Host: 118.31.15.152 > User-Agent: curl/7.67.0-DEV > Accept: */* > * Mark bundle as not supporting multiuse < HTTP/1.1 301 Moved Permanently < Server: nginx/1.10.3 (Ubuntu) < Date: Wed, 01 Jul 2020 07:43:17 GMT < Content-Type: text/html < Content-Length: 194 < Connection: keep-alive < Location: [https://www.rt-thread.org/service/rt-thread.txt](https://www.rt-thread.org/service/rt-thread.txt) < Strict-Transport-Security: max-age=1800; includeSubdomains; preload <
301 Moved Permanently
301 Moved Permanently
nginx/1.10.3 (Ubuntu)
* Connection #0 to host 118.31.15.152 left intact ```
aozima
2020-07-01
调网络不抓包,调I2C等时序不上逻辑分析仪,就像电工不用万用表!多用整理的好的文字,比截图更省流量,还能在整理过程中思考。
>发现一个新问题: >直接用ip地址代替rt-thread.com出现301返回码? --- 记得别的贴子和你说了,https的SNI问题
撰写答案
登录
注册新账号
关注者
0
被浏览
1.7k
关于作者
芋圆源钰
这家伙很懒,什么也没写!
提问
11
回答
12
被采纳
0
关注TA
发私信
相关问题
1
【LWIP学习营】第一关开发环境搭建
2
LWIP学习营第一周入门移植问题汇总贴
3
【LWIP学习营】f407+lan8720A小结
4
【LwIP学习营】【第一周】仅零散记录,无主题
5
【LWIP学习营】正点原子探索者F407+LAN8720第一周小结
6
【LwIP学习营】【第一周】网络通信基础及实现TCP 聊天客户端
7
【LwIP学习营】【第一周】LWIP移植
8
【LwIP学习营】【第一周】LWIP移植
9
【LwIP学习营】【第一周】开发板适配
10
【LwIP学习营】【第一周】环境搭建和配置验证
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
使用RC522软件包驱动FM1722
2
常量数据类型和表达式陷阱分享
3
进行i2c驱动移植的经验总结
4
在VSCode中使用clang-format
5
我该如何使用这个微雪的WIFI400 WIFI-LPB-100在rtt里或者我该怎样为它开发驱动
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
UART
WIZnet_W5500
ota在线升级
freemodbus
PWM
flash
cubemx
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
编译报错
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
C++_cpp
MicroPython
本月问答贡献
出出啊
1517
个答案
342
次被采纳
小小李sunny
1444
个答案
289
次被采纳
张世争
809
个答案
175
次被采纳
crystal266
547
个答案
161
次被采纳
whj467467222
1222
个答案
148
次被采纳
本月文章贡献
catcatbing
3
篇文章
5
次点赞
qq1078249029
2
篇文章
2
次点赞
xnosky
2
篇文章
1
次点赞
Woshizhapuren
1
篇文章
5
次点赞
YZRD
1
篇文章
2
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部