Actions
Feature #8624
closedDNS Resolver Resolve IPv6 OpenVPN Client Addresses
Start date:
07/07/2018
Due date:
% Done:
100%
Estimated time:
Plus Target Version:
Release Notes:
Description
Currently it only handles the IPv4 of the client and ignores the IPv6 of a client if it exists. It would be nice if it would resolve both IPv4 and IPv6 when present.
Updated by Viktor Gurov over 4 years ago
Updated by Jim Pingle over 4 years ago
- Status changed from New to Pull Request Review
- Target version set to 2.5.0
Updated by Renato Botelho over 4 years ago
- Status changed from Pull Request Review to Feedback
- Assignee set to Renato Botelho
- % Done changed from 0 to 100
PR has been merged. Thanks!
Updated by Viktor Gurov over 4 years ago
- Status changed from Feedback to Resolved
works as expected on 2.5.0.a.20200310.1958
# cat ssh/var/unbound/openvpn.client.ovpnuser1.ipv4.conf local-data-ptr: "123.123.123.2 ovpnuser1.example.int" local-data: "ovpnuser1.example.int A 123.123.123.2" local-data: "ovpnuser1 A 123.123.123.2" # cat ssh/var/unbound/openvpn.client.ovpnuser1.ipv6.conf local-data-ptr: "fd00:6666::1000 ovpnuser1.example.int" local-data: "ovpnuser1.example.int AAAA fd00:6666::1000" local-data: "ovpnuser1 AAAA fd00:6666::1000" # ping6 ovpnuser1 PING6(56=40+8+8 bytes) fd00:6666::1 --> fd00:6666::1000 16 bytes from fd00:6666::1000, icmp_seq=0 hlim=64 time=1.160 ms 16 bytes from fd00:6666::1000, icmp_seq=1 hlim=64 time=0.870 ms 16 bytes from fd00:6666::1000, icmp_seq=2 hlim=64 time=0.614 ms
Actions