惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
Secure Thoughts
罗磊的独立博客
T
The Blog of Author Tim Ferriss
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
Last Week in AI
Last Week in AI
美团技术团队
Google Online Security Blog
Google Online Security Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
D
Docker
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
月光博客
月光博客
L
LINUX DO - 最新话题
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
W
WeLiveSecurity
H
Heimdal Security Blog
Vercel News
Vercel News
SecWiki News
SecWiki News
Forbes - Security
Forbes - Security
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
www.infosecurity-magazine.com
www.infosecurity-magazine.com
TaoSecurity Blog
TaoSecurity Blog
T
Troy Hunt's Blog
A
About on SuperTechFans
C
Check Point Blog
S
Security Affairs
Hacker News - Newest:
Hacker News - Newest: "LLM"
AI
AI
WordPress大学
WordPress大学
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Help Net Security
Help Net Security
博客园_首页
The Last Watchdog
The Last Watchdog
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - Blog
Security Archives - TechRepublic
Security Archives - TechRepublic
Engineering at Meta
Engineering at Meta
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
I
Intezer
K
Kaspersky official blog
M
MIT News - Artificial intelligence
J
Java Code Geeks
G
GRAHAM CLULEY
P
Palo Alto Networks Blog

0.9.9 on CoreDNS: DNS and Service Discovery

暂无文章

CoreDNS-0.9.9 Release
coredns · 2017-10-18 · via 0.9.9 on CoreDNS: DNS and Service Discovery

CoreDNS-0.9.9 has been released! (yes, we’ve moved to semver)

CoreDNS is a DNS server that chains plugins, where each plugin implements a DNS feature.

Release 0.9.9 is a major release, with lots of fixes.

Core

  • We’ve renamed middleware.Middleware to plugin.Plugin. This is backwards incompatible for external middleware plugins, but you can update your plugin by just replacing [Mm]iddleware with [Pp]lugin:
     sed 's/Middleware/Plugin/'g -i *.go
     sed 's/middleware/plugin/'g -i *.go
    

From now on we’ll use the term plugin in our documentation and code.

Plugins

  • etcd’s debug queries are removed.
  • hosts gets inline host definitions that add or overwrite those from /etc/hosts.
  • auto, file now poll every minute for on disk changes (inotify wasn’t working).
  • rewrite can chain rules and perform multiple changes on a message.
  • kubernetes uses protobuf to communicate with the kubernetes API and performance improvements when there are a large number of services.
  • dnstap saw several fixes, including sending tap messages out-of-band.
  • cache apply configured TTL to first answer returned.
    • Don’t cache TTL=0 messages.
  • proxy smaller timeouts and the health check GET was given a timeout.
    • Better metrics: add a request counter metrics and change the ‘from’ label to ’to’ so we count/duration per upstream.
  • dnssec now signs NODATA responses.

External Plugins

Two new external plugins were added:

  • ipecho parses the IP out of a subdomain and echos it back as an record.
  • forward facilitates proxying DNS messages to upstream resolvers.

Contributors

The following people helped with getting this release done:

antonkyrylenko, Chris O’Haver, Chris West, Damian Myerscough, Isolus, John Belamaric, Miek Gieben, Sandeep Rajan, Thong Huynh, varyoo, Yong Tang.

If you want to help, please check out one of the issues and start coding!

For documentation and help, see our community page.