You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SpoofAction should accept a FQDN alternatively to an IPv4 in which case the response would return a CNAME record.
Allow Lua actions to spoof queries programmatically. Currently we can send queries to pools from within a Lua action (return DNSAction.Pool, "abuse"). The same should be possible for the SpoofAction:
- Add addDomainCNAMESpoof() and SpoofCNAMEAction()
- Check that we have enough space in the buffer to write the response
- Implement the first part of PowerDNS#3064
rgacogne
added a commit
to rgacogne/pdns
that referenced
this issue
Jan 5, 2016
- Add addDomainCNAMESpoof() and SpoofCNAMEAction()
- Check that we have enough space in the buffer to write the response
- Implement the first part of PowerDNS#3064
DNSAction.Spoof can be used to return a spoofed response from
a Lua rule. It supports an IPv4 (A), IPv6 (AAAA) or a DNSName
(CNAME).
SpoofAction() can be used IPv6-only, by passing a IPv6 as the
first parameter. It now supports spoofing IPv4-only, IPv6-only,
IPv4 and IPv6, and CNAME.
ClosesPowerDNS#3064.
This is request for enhancing domain spoofing:
SpoofAction
should accept a FQDN alternatively to an IPv4 in which case the response would return a CNAME record.return DNSAction.Pool, "abuse"
). The same should be possible for the SpoofAction:The text was updated successfully, but these errors were encountered: