How to Build a custom simple DNS server in C/C++(如何在 C/C++ 中构建自定义的简单 DNS 服务器)
问题描述
我需要在 C/C++ 中构建一个自定义的简单非权威缓存 DNS 服务器.任何指导?链接?样品?
I need to build a custom simple non-authoritative caching DNS server in C/C++. Any guidance? Links? Samples?
推荐答案
没有简单"缓存 DNS 服务器这样的东西,特别是如果您想要体面的安全性.最近的 DNS 攻击表明递归 DNS 服务器中的缓存功能特别容易受到攻击.
There's no such thing as a "simple" cacheing DNS server, particularly if you want decent security. Recent DNS attacks have shown that the cacheing function in recursive DNS servers is particularly vulnerable.
重新评估您是否真的需要自己的本地缓存.如果不这样做,您可能最好修改现有的 DNS 代理代码(例如dnsmasq").
Re-evaluate whether you actually need local cacheing of your own. If you don't, you're probably better off modifying existing DNS proxy code (such as 'dnsmasq').
如果您确实想自己动手,有一些不错的库,例如 ldns
可以提供对底层 DNS 数据包的访问.
If you do want to roll-your-own, there are good libraries such as ldns
which can provide the access to the underlying DNS packets.
我自己使用 ldns
和 libevent
来实现我在前面的问题中提到的 Fuzzing DNS 服务器.
I'm using ldns
myself in conjunction with libevent
to implement the Fuzzing DNS server I mentioned in an earlier question.
这篇关于如何在 C/C++ 中构建自定义的简单 DNS 服务器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 C/C++ 中构建自定义的简单 DNS 服务器


基础教程推荐
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 我有静态或动态 boost 库吗? 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 常量变量在标题中不起作用 2021-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01