<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vyos-1x.git/data/templates/dns-forwarding, branch equuleus</title>
<subtitle>VyOS command definitions, scripts, and utilities (mirror of https://github.com/marekm72/vyos-1x.git)
</subtitle>
<id>https://git.amelek.net/marekm72/vyos-1x.git/atom?h=equuleus</id>
<link rel='self' href='https://git.amelek.net/marekm72/vyos-1x.git/atom?h=equuleus'/>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-1x.git/'/>
<updated>2023-08-29T07:05:30+00:00</updated>
<entry>
<title>T738: add CLI option for PowerDNS local-port</title>
<updated>2023-08-29T07:05:30+00:00</updated>
<author>
<name>Viacheslav Hletenko</name>
<email>v.gletenko@vyos.io</email>
</author>
<published>2023-08-28T09:13:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-1x.git/commit/?id=cceea89cdfbd4c4c42611fcf74350ab0b25d7c03'/>
<id>urn:sha1:cceea89cdfbd4c4c42611fcf74350ab0b25d7c03</id>
<content type='text'>
set service dns forwarding allow-from '192.0.2.0/24'
set service dns forwarding listen-address '192.0.2.11'
set service dns forwarding port '5353'
</content>
</entry>
<entry>
<title>dns: T4509: Add dns64-prefix option</title>
<updated>2022-07-07T10:09:42+00:00</updated>
<author>
<name>Viacheslav Hletenko</name>
<email>v.gletenko@vyos.io</email>
</author>
<published>2022-07-04T18:16:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-1x.git/commit/?id=1577dc53f144d8a7c4438ca98a574102bea14c6b'/>
<id>urn:sha1:1577dc53f144d8a7c4438ca98a574102bea14c6b</id>
<content type='text'>
rfc6147: DNS Extensions for Network Address Translation
         from IPv6 Clients to IPv4 Servers

set service dns forwarding dns64-prefix 2001:db8:aabb::/96

(cherry picked from commit 2bdf4798570222b57af2de2f0b443529abdc3feb)
</content>
</entry>
<entry>
<title>dns: T3277: DNS Forwarding - reverse zones for RFC1918 addresses</title>
<updated>2021-10-13T07:36:12+00:00</updated>
<author>
<name>Hard7Rock</name>
<email>igor_melnyk@ukr.net</email>
</author>
<published>2021-05-04T04:17:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-1x.git/commit/?id=e84623a1cd284d742d5c8849a75c56c3b178e0ef'/>
<id>urn:sha1:e84623a1cd284d742d5c8849a75c56c3b178e0ef</id>
<content type='text'>
(cherry picked from commit 0191c089f94455f53f3f234c094891353583f64c)
(cherry picked from commit 8fcff3112b235307b78eb23833c1d646f0e7f9f4)
</content>
</entry>
<entry>
<title>dns: forwarding: T3882: remove deprecated code to work with PowerDNS 4.5</title>
<updated>2021-10-02T10:02:57+00:00</updated>
<author>
<name>Christian Poessinger</name>
<email>christian@poessinger.com</email>
</author>
<published>2021-10-02T10:02:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-1x.git/commit/?id=8e6c48563d1612916bd7fcc665d70bfa77ec5667'/>
<id>urn:sha1:8e6c48563d1612916bd7fcc665d70bfa77ec5667</id>
<content type='text'>
</content>
</entry>
<entry>
<title>dns: T3121: recursion zone bugfix</title>
<updated>2020-12-09T19:16:04+00:00</updated>
<author>
<name>NEOMorphey</name>
<email>neomorphey@gmail.com</email>
</author>
<published>2020-12-09T19:16:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-1x.git/commit/?id=2f5de3cfadec3b708b4b332d154b3b619f4d873e'/>
<id>urn:sha1:2f5de3cfadec3b708b4b332d154b3b619f4d873e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>pdns_recursor: T2964: Expose query-local-address to dns config.</title>
<updated>2020-10-06T16:14:31+00:00</updated>
<author>
<name>Lucas Christian</name>
<email>lucas@lucasec.com</email>
</author>
<published>2020-10-05T19:35:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-1x.git/commit/?id=e9cac63933ae9ddbb13a64406cff77640ab901dc'/>
<id>urn:sha1:e9cac63933ae9ddbb13a64406cff77640ab901dc</id>
<content type='text'>
In certain split DNS configurations, there is a need for more
fine-grained control over the local address DNS forwarding uses to
issue queries. The current pdns_recursor configuration allows the
recursor to send queries from any available address on the interface
the OS selects for the query, with no option to limit queries to a
particular address or set of addresses.

This commit exposes the `query-local-address` option in
`recursor.conf` to users via the `service` `dns` `forwarding`
`source-address` config node.

If the parameter is unspecified, the default value of 0.0.0.0 (any
IPv4 address) and :: (any IPv6 address) are used to match current
behavior.

Users who want more control can specify one or more IPv4 and IPv6
addresses to issue queries from. Per pdns_recursor docs, the recursor
will load balance queries between any available addresses in the
pools. Since IPv4 and IPv6 are different pools, note that specifying
only one type of address will disable issuing queries for the other
address family.
</content>
</entry>
<entry>
<title>dns: forwarding: T2921: migrate to get_config_dict()</title>
<updated>2020-09-25T17:21:36+00:00</updated>
<author>
<name>Christian Poessinger</name>
<email>christian@poessinger.com</email>
</author>
<published>2020-09-25T17:21:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-1x.git/commit/?id=f39f5dde342aa5e14d1fb4155920c61ac5fd11b1'/>
<id>urn:sha1:f39f5dde342aa5e14d1fb4155920c61ac5fd11b1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>dns: forwarding: T2921: template cleanup</title>
<updated>2020-09-24T16:23:39+00:00</updated>
<author>
<name>Christian Poessinger</name>
<email>christian@poessinger.com</email>
</author>
<published>2020-09-24T16:22:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-1x.git/commit/?id=2b06653a824f21bf5b3a843f109f99096e7500ff'/>
<id>urn:sha1:2b06653a824f21bf5b3a843f109f99096e7500ff</id>
<content type='text'>
</content>
</entry>
<entry>
<title>dns: T2675: fix recursor.vyos-hostsd.conf.lua</title>
<updated>2020-07-13T13:17:35+00:00</updated>
<author>
<name>JACK</name>
<email>jack9603301@163.com</email>
</author>
<published>2020-07-13T13:17:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-1x.git/commit/?id=e87e39ae599f5de227c05e208d55461eb9dec2dd'/>
<id>urn:sha1:e87e39ae599f5de227c05e208d55461eb9dec2dd</id>
<content type='text'>
When users use the standard fully qualified domain name writing method,
 there will be an extra point after the actual domain name. 
In order to ensure that the standard writing method is supported,
 it should not be mandatory to add this point in Lua script</content>
</entry>
<entry>
<title>dns forwarding: T2486: add templates</title>
<updated>2020-06-11T20:10:47+00:00</updated>
<author>
<name>Jernej Jakob</name>
<email>jernej.jakob@gmail.com</email>
</author>
<published>2020-06-11T07:17:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-1x.git/commit/?id=6f2d87526d9ad4e8e1cb09a607223ee6119f02e7'/>
<id>urn:sha1:6f2d87526d9ad4e8e1cb09a607223ee6119f02e7</id>
<content type='text'>
</content>
</entry>
</feed>
