The FreeBSD Ports Archive
FreeBSD dns : dnrd4>
A proxy DNS daemon
DNRD is a proxy DNS daemon. It supports several forward servers for
redundancy and/or load-balancing. DNS queries for specific domains can
be forwarded to a specific group of DNS servers (with redundancy and
load balancing) for that domain. It is useful for VPNs and also good
support for offline and dialup sites.
http://dnrd.sourceforge.net
|
dnrd history
v. 1.28
date: 2006/05/04 21:41:11; author: edwin; state: Exp; lines: +0 -1
Remove USE_REINPLACE from all categories starting with D
v. 1.27
date: 2005/11/30 21:37:53; author: edwin; state: Exp; lines: +1 -1
Update port: dns/dnrd (bug fix release)
DNRD will always bind to all interfaces, even if the user specifically
says it should bind to only one, using the -a option.
PR: ports/89774
Submitted by: Natanael Copa
v. 1.26
date: 2005/09/06 12:10:46; author: garga; state: Exp; lines: +25 -12
- Update to 2.20 [1]
- OPTIONS'ify
- Use PORTDOCS
- Remove 3 lines pkg-plist
- Move dnrd.sh to dnrd.sh.in and use USE_RC_SUBR facility
PR: ports/85744 [1]
Submitted by: maintainer [1]
Reworked by: myself
Approved by: maintainer
v. 1.25
date: 2005/07/21 15:43:04; author: pav; state: Exp; lines: +1 -1
- Update to 2.19.1
PR: ports/83851
Submitted by: Natanael Copa (maintainer)
Security: CAN-2005-2315, CAN-2005-2316
v. 1.24
date: 2005/04/12 03:25:20; author: obrien; state: Exp; lines: +1 -1
At Kris's request, back out the MACHINE_ARCH spelling correction until
after 5.4-RELEASE.
v. 1.23
date: 2005/04/11 08:02:04; author: obrien; state: Exp; lines: +1 -1
Assist getting more ports working on AMD64 by obeying the
Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
v. 1.22
date: 2005/02/10 22:38:58; author: pav; state: Exp; lines: +1 -1
- Update to 2.19
PR: ports/77347
Submitted by: Natanael Copa (maintainer)
v. 1.21
date: 2005/01/12 09:49:38; author: edwin; state: Exp; lines: +1 -3
Update port: dns/dnrd version 2.18
Version bump. This release fixes segfault in argument
parsing. Cleaned -h output (remved longopts when they are
unavailable) Improved signal handling and blacklist feature
added. Proper handling of paths in documentation.
I implemeted a pselect in lib.c for BSD 4.x support. Please
let me know if this could be handeled in a better way.
PR: ports/76060
Submitted by: Natanael Copa
v. 1.20
date: 2004/12/04 16:57:34; author: arved; state: Exp; lines: +1 -1
Update to 2.17.2
PR: 74618
Submitted by: Natanael Copa
v. 1.19
date: 2004/11/08 07:40:55; author: vs; state: Exp; lines: +3 -5
Update to 2.17.1:
This version introduce random source ports to
reduce the risk of getting the cache poisoned.
Assign maintainership to submitter/author.
PR: ports/73420
Submitted by: Natanael Copa
v. 1.18
date: 2004/10/13 13:47:53; author: krion; state: Exp; lines: +1 -1
Update to 2.16.1
PR: ports/72637
Submitted by: Natanael Copa
v. 1.17
date: 2004/10/12 09:57:28; author: sergei; state: Exp; lines: +19 -7
- Update to 2.16 - this fixes various bugs and adds random query IDs
to prevent cache poisoning.
PR: ports/72522
Submitted by: Natanael Copa
While I'm here:
- Rework installation mechanism - use do-install target
- Respect NOPORTDOCS
- Install samples into EXAMPLESDIR
- Use DOCSDIR and EXAMPLESDIR macros in pkg-plist
v. 1.16
date: 2004/10/12 01:12:12; author: edwin; state: Exp; lines: +9 -1
Update port: dnrd [maintainer update]
Update of dnrd. The TCP support is totally broken in previous
versions. Even if it should work in this verion it is
disabled by default. (The code was so ugly). It can be
enabled with WITH_TCP.
In this version it is also possible to disable the MASTER
file support. So dnrd can be a compiled as proxy only.
WITHOUT_MASTER.
PR: ports/71770
Submitted by: Natanael Copa
v. 1.15
date: 2004/08/13 17:59:12; author: pav; state: Exp; lines: +1 -1
- Update to 2.14.1
PR: ports/70404
Submitted by: Natanael Copa
v. 1.14
date: 2004/07/28 21:54:57; author: pav; state: Exp; lines: +4 -1
- Fix few obvious problems with rc script
v. 1.13
date: 2004/07/28 20:53:08; author: pav; state: Exp; lines: +12 -14
- Update to 2.14
- Add rc script
PR: ports/69669 (based on)
Submitted by: Natanael Copa
v. 1.12
date: 2004/04/10 17:26:35; author: trevor; state: Exp; lines: +3 -3
Tidy up whitespace.
v. 1.11
date: 2004/02/05 20:37:07; author: trevor; state: Exp; lines: +1 -0
Use PLIST_FILES.
Reviewed by: marcus
v. 1.10
date: 2004/02/04 05:19:56; author: marcus; state: Exp; lines: +1 -1
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.
(Part 2)
v. 1.9
date: 2004/01/03 05:42:42; author: edwin; state: Exp; lines: +7 -4
dns/dnrd: recv_addr init wrong and 512 byte udp packets dropped
There are a few bugs in dnrd that should probably be fixed
by the author but could be made to work on bsd:
1. Initialization in common.h of recv_addr is broken,
causing at least the '-a' switch not to work. Instead of
assuming positions of fields in the struct across platforms
I thought it safer to do a standard initialization in main().
2. The buffer overflow code in udp.c:dnsrecv() is off by
one, rejecting messages where the size exactly fills the
available buffer. I also changed to the calls to dnsrecv
to pass 512 as the max size instead of the buffers that
seem to be padded by 4 bytes for a reason I don't understand.
This causes a calling named to resend packets. Eventually
one seems to get through but response times can be painfully
slow.
PR: ports/41128
Submitted by: Michael C. Adler
v. 1.8
date: 2003/11/03 22:04:09; author: edwin; state: Exp; lines: +2 -1
fix mastersites, fix pkg-descr WWW
v. 1.7
date: 2003/11/03 00:54:31; author: kris; state: Exp; lines: +2 -2
Reset maintainer of ports owned by inactive committers who were just retired.
v. 1.6
date: 2003/09/05 04:54:32; author: edwin; state: Exp; lines: +1 -1
Massive repo-copies request: net->dns (partly devel->dns)
PR: ports/56020
Submitted by: Kimura Fuyuki
Approved by: portmgr
v. 1.5
date: 2003/03/07 06:07:39; author: ade; state: Exp; lines: +1 -0
Clear moonlight beckons.
Requiem mors pacem pkg-comment,
And be calm ports tree.
E Nomini Patri, E Fili, E Spiritu Sancti.
v. 1.4
date: 2002/11/04 02:31:20; author: edwin; state: Exp; lines: +3 -2
PERL -> REINPLACE
Noticed on: bento
v. 1.3
date: 2001/06/07 08:42:49; author: greid; state: Exp; lines: +3 -3
Update to version 2.10
PR: 27904
Submitted by: Jose Marques
v. 1.2
date: 2001/03/29 16:34:20; author: sobomax; state: Exp; lines: +2 -2
-pthread --> ${PTHREAD_LIBS}
-D_THREAD_SAFE --> ${PTHREAD_CFLAGS}
Note: my first intention was to test this out on bento/beta, but per ade's
requiest I opted to do it quickly.
v. 1.1
date: 2001/03/10 19:33:50; author: will; state: Exp;
Add dnrd 2.9, a proxy DNS daemon.
PR: 24107
Submitted by: George Reid
=============================================================================
v. 1.28
date: 2006/05/04 21:41:11; author: edwin; state: Exp; lines: +0 -1
Remove USE_REINPLACE from all categories starting with D
v. 1.27
date: 2005/11/30 21:37:53; author: edwin; state: Exp; lines: +1 -1
Update port: dns/dnrd (bug fix release)
DNRD will always bind to all interfaces, even if the user specifically
says it should bind to only one, using the -a option.
PR: ports/89774
Submitted by: Natanael Copa
v. 1.26
date: 2005/09/06 12:10:46; author: garga; state: Exp; lines: +25 -12
- Update to 2.20 [1]
- OPTIONS'ify
- Use PORTDOCS
- Remove 3 lines pkg-plist
- Move dnrd.sh to dnrd.sh.in and use USE_RC_SUBR facility
PR: ports/85744 [1]
Submitted by: maintainer [1]
Reworked by: myself
Approved by: maintainer
v. 1.25
date: 2005/07/21 15:43:04; author: pav; state: Exp; lines: +1 -1
- Update to 2.19.1
PR: ports/83851
Submitted by: Natanael Copa (maintainer)
Security: CAN-2005-2315, CAN-2005-2316
v. 1.24
date: 2005/04/12 03:25:20; author: obrien; state: Exp; lines: +1 -1
At Kris's request, back out the MACHINE_ARCH spelling correction until
after 5.4-RELEASE.
v. 1.23
date: 2005/04/11 08:02:04; author: obrien; state: Exp; lines: +1 -1
Assist getting more ports working on AMD64 by obeying the
Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
v. 1.22
date: 2005/02/10 22:38:58; author: pav; state: Exp; lines: +1 -1
- Update to 2.19
PR: ports/77347
Submitted by: Natanael Copa (maintainer)
v. 1.21
date: 2005/01/12 09:49:38; author: edwin; state: Exp; lines: +1 -3
Update port: dns/dnrd version 2.18
Version bump. This release fixes segfault in argument
parsing. Cleaned -h output (remved longopts when they are
unavailable) Improved signal handling and blacklist feature
added. Proper handling of paths in documentation.
I implemeted a pselect in lib.c for BSD 4.x support. Please
let me know if this could be handeled in a better way.
PR: ports/76060
Submitted by: Natanael Copa
v. 1.20
date: 2004/12/04 16:57:34; author: arved; state: Exp; lines: +1 -1
Update to 2.17.2
PR: 74618
Submitted by: Natanael Copa
v. 1.19
date: 2004/11/08 07:40:55; author: vs; state: Exp; lines: +3 -5
Update to 2.17.1:
This version introduce random source ports to
reduce the risk of getting the cache poisoned.
Assign maintainership to submitter/author.
PR: ports/73420
Submitted by: Natanael Copa
v. 1.18
date: 2004/10/13 13:47:53; author: krion; state: Exp; lines: +1 -1
Update to 2.16.1
PR: ports/72637
Submitted by: Natanael Copa
v. 1.17
date: 2004/10/12 09:57:28; author: sergei; state: Exp; lines: +19 -7
- Update to 2.16 - this fixes various bugs and adds random query IDs
to prevent cache poisoning.
PR: ports/72522
Submitted by: Natanael Copa
While I'm here:
- Rework installation mechanism - use do-install target
- Respect NOPORTDOCS
- Install samples into EXAMPLESDIR
- Use DOCSDIR and EXAMPLESDIR macros in pkg-plist
v. 1.16
date: 2004/10/12 01:12:12; author: edwin; state: Exp; lines: +9 -1
Update port: dnrd [maintainer update]
Update of dnrd. The TCP support is totally broken in previous
versions. Even if it should work in this verion it is
disabled by default. (The code was so ugly). It can be
enabled with WITH_TCP.
In this version it is also possible to disable the MASTER
file support. So dnrd can be a compiled as proxy only.
WITHOUT_MASTER.
PR: ports/71770
Submitted by: Natanael Copa
v. 1.15
date: 2004/08/13 17:59:12; author: pav; state: Exp; lines: +1 -1
- Update to 2.14.1
PR: ports/70404
Submitted by: Natanael Copa
v. 1.14
date: 2004/07/28 21:54:57; author: pav; state: Exp; lines: +4 -1
- Fix few obvious problems with rc script
v. 1.13
date: 2004/07/28 20:53:08; author: pav; state: Exp; lines: +12 -14
- Update to 2.14
- Add rc script
PR: ports/69669 (based on)
Submitted by: Natanael Copa
v. 1.12
date: 2004/04/10 17:26:35; author: trevor; state: Exp; lines: +3 -3
Tidy up whitespace.
v. 1.11
date: 2004/02/05 20:37:07; author: trevor; state: Exp; lines: +1 -0
Use PLIST_FILES.
Reviewed by: marcus
v. 1.10
date: 2004/02/04 05:19:56; author: marcus; state: Exp; lines: +1 -1
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.
(Part 2)
v. 1.9
date: 2004/01/03 05:42:42; author: edwin; state: Exp; lines: +7 -4
dns/dnrd: recv_addr init wrong and 512 byte udp packets dropped
There are a few bugs in dnrd that should probably be fixed
by the author but could be made to work on bsd:
1. Initialization in common.h of recv_addr is broken,
causing at least the '-a' switch not to work. Instead of
assuming positions of fields in the struct across platforms
I thought it safer to do a standard initialization in main().
2. The buffer overflow code in udp.c:dnsrecv() is off by
one, rejecting messages where the size exactly fills the
available buffer. I also changed to the calls to dnsrecv
to pass 512 as the max size instead of the buffers that
seem to be padded by 4 bytes for a reason I don't understand.
This causes a calling named to resend packets. Eventually
one seems to get through but response times can be painfully
slow.
PR: ports/41128
Submitted by: Michael C. Adler
v. 1.8
date: 2003/11/03 22:04:09; author: edwin; state: Exp; lines: +2 -1
fix mastersites, fix pkg-descr WWW
v. 1.7
date: 2003/11/03 00:54:31; author: kris; state: Exp; lines: +2 -2
Reset maintainer of ports owned by inactive committers who were just retired.
v. 1.6
date: 2003/09/05 04:54:32; author: edwin; state: Exp; lines: +1 -1
Massive repo-copies request: net->dns (partly devel->dns)
PR: ports/56020
Submitted by: Kimura Fuyuki
Approved by: portmgr
v. 1.5
date: 2003/03/07 06:07:39; author: ade; state: Exp; lines: +1 -0
Clear moonlight beckons.
Requiem mors pacem pkg-comment,
And be calm ports tree.
E Nomini Patri, E Fili, E Spiritu Sancti.
v. 1.4
date: 2002/11/04 02:31:20; author: edwin; state: Exp; lines: +3 -2
PERL -> REINPLACE
Noticed on: bento
v. 1.3
date: 2001/06/07 08:42:49; author: greid; state: Exp; lines: +3 -3
Update to version 2.10
PR: 27904
Submitted by: Jose Marques
v. 1.2
date: 2001/03/29 16:34:20; author: sobomax; state: Exp; lines: +2 -2
-pthread --> ${PTHREAD_LIBS}
-D_THREAD_SAFE --> ${PTHREAD_CFLAGS}
Note: my first intention was to test this out on bento/beta, but per ade's
requiest I opted to do it quickly.
v. 1.1
date: 2001/03/10 19:33:50; author: will; state: Exp;
Add dnrd 2.9, a proxy DNS daemon.
PR: 24107
Submitted by: George Reid
=============================================================================
v. 1.28
date: 2006/05/04 21:41:11; author: edwin; state: Exp; lines: +0 -1
Remove USE_REINPLACE from all categories starting with D
v. 1.27
date: 2005/11/30 21:37:53; author: edwin; state: Exp; lines: +1 -1
Update port: dns/dnrd (bug fix release)
DNRD will always bind to all interfaces, even if the user specifically
says it should bind to only one, using the -a option.
PR: ports/89774
Submitted by: Natanael Copa
v. 1.26
date: 2005/09/06 12:10:46; author: garga; state: Exp; lines: +25 -12
- Update to 2.20 [1]
- OPTIONS'ify
- Use PORTDOCS
- Remove 3 lines pkg-plist
- Move dnrd.sh to dnrd.sh.in and use USE_RC_SUBR facility
PR: ports/85744 [1]
Submitted by: maintainer [1]
Reworked by: myself
Approved by: maintainer
v. 1.25
date: 2005/07/21 15:43:04; author: pav; state: Exp; lines: +1 -1
- Update to 2.19.1
PR: ports/83851
Submitted by: Natanael Copa (maintainer)
Security: CAN-2005-2315, CAN-2005-2316
v. 1.24
date: 2005/04/12 03:25:20; author: obrien; state: Exp; lines: +1 -1
At Kris's request, back out the MACHINE_ARCH spelling correction until
after 5.4-RELEASE.
v. 1.23
date: 2005/04/11 08:02:04; author: obrien; state: Exp; lines: +1 -1
Assist getting more ports working on AMD64 by obeying the
Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
v. 1.22
date: 2005/02/10 22:38:58; author: pav; state: Exp; lines: +1 -1
- Update to 2.19
PR: ports/77347
Submitted by: Natanael Copa (maintainer)
v. 1.21
date: 2005/01/12 09:49:38; author: edwin; state: Exp; lines: +1 -3
Update port: dns/dnrd version 2.18
Version bump. This release fixes segfault in argument
parsing. Cleaned -h output (remved longopts when they are
unavailable) Improved signal handling and blacklist feature
added. Proper handling of paths in documentation.
I implemeted a pselect in lib.c for BSD 4.x support. Please
let me know if this could be handeled in a better way.
PR: ports/76060
Submitted by: Natanael Copa
v. 1.20
date: 2004/12/04 16:57:34; author: arved; state: Exp; lines: +1 -1
Update to 2.17.2
PR: 74618
Submitted by: Natanael Copa
v. 1.19
date: 2004/11/08 07:40:55; author: vs; state: Exp; lines: +3 -5
Update to 2.17.1:
This version introduce random source ports to
reduce the risk of getting the cache poisoned.
Assign maintainership to submitter/author.
PR: ports/73420
Submitted by: Natanael Copa
v. 1.18
date: 2004/10/13 13:47:53; author: krion; state: Exp; lines: +1 -1
Update to 2.16.1
PR: ports/72637
Submitted by: Natanael Copa
v. 1.17
date: 2004/10/12 09:57:28; author: sergei; state: Exp; lines: +19 -7
- Update to 2.16 - this fixes various bugs and adds random query IDs
to prevent cache poisoning.
PR: ports/72522
Submitted by: Natanael Copa
While I'm here:
- Rework installation mechanism - use do-install target
- Respect NOPORTDOCS
- Install samples into EXAMPLESDIR
- Use DOCSDIR and EXAMPLESDIR macros in pkg-plist
v. 1.16
date: 2004/10/12 01:12:12; author: edwin; state: Exp; lines: +9 -1
Update port: dnrd [maintainer update]
Update of dnrd. The TCP support is totally broken in previous
versions. Even if it should work in this verion it is
disabled by default. (The code was so ugly). It can be
enabled with WITH_TCP.
In this version it is also possible to disable the MASTER
file support. So dnrd can be a compiled as proxy only.
WITHOUT_MASTER.
PR: ports/71770
Submitted by: Natanael Copa
v. 1.15
date: 2004/08/13 17:59:12; author: pav; state: Exp; lines: +1 -1
- Update to 2.14.1
PR: ports/70404
Submitted by: Natanael Copa
v. 1.14
date: 2004/07/28 21:54:57; author: pav; state: Exp; lines: +4 -1
- Fix few obvious problems with rc script
v. 1.13
date: 2004/07/28 20:53:08; author: pav; state: Exp; lines: +12 -14
- Update to 2.14
- Add rc script
PR: ports/69669 (based on)
Submitted by: Natanael Copa
v. 1.12
date: 2004/04/10 17:26:35; author: trevor; state: Exp; lines: +3 -3
Tidy up whitespace.
v. 1.11
date: 2004/02/05 20:37:07; author: trevor; state: Exp; lines: +1 -0
Use PLIST_FILES.
Reviewed by: marcus
v. 1.10
date: 2004/02/04 05:19:56; author: marcus; state: Exp; lines: +1 -1
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.
(Part 2)
v. 1.9
date: 2004/01/03 05:42:42; author: edwin; state: Exp; lines: +7 -4
dns/dnrd: recv_addr init wrong and 512 byte udp packets dropped
There are a few bugs in dnrd that should probably be fixed
by the author but could be made to work on bsd:
1. Initialization in common.h of recv_addr is broken,
causing at least the '-a' switch not to work. Instead of
assuming positions of fields in the struct across platforms
I thought it safer to do a standard initialization in main().
2. The buffer overflow code in udp.c:dnsrecv() is off by
one, rejecting messages where the size exactly fills the
available buffer. I also changed to the calls to dnsrecv
to pass 512 as the max size instead of the buffers that
seem to be padded by 4 bytes for a reason I don't understand.
This causes a calling named to resend packets. Eventually
one seems to get through but response times can be painfully
slow.
PR: ports/41128
Submitted by: Michael C. Adler
v. 1.8
date: 2003/11/03 22:04:09; author: edwin; state: Exp; lines: +2 -1
fix mastersites, fix pkg-descr WWW
v. 1.7
date: 2003/11/03 00:54:31; author: kris; state: Exp; lines: +2 -2
Reset maintainer of ports owned by inactive committers who were just retired.
v. 1.6
date: 2003/09/05 04:54:32; author: edwin; state: Exp; lines: +1 -1
Massive repo-copies request: net->dns (partly devel->dns)
PR: ports/56020
Submitted by: Kimura Fuyuki
Approved by: portmgr
v. 1.5
date: 2003/03/07 06:07:39; author: ade; state: Exp; lines: +1 -0
Clear moonlight beckons.
Requiem mors pacem pkg-comment,
And be calm ports tree.
E Nomini Patri, E Fili, E Spiritu Sancti.
v. 1.4
date: 2002/11/04 02:31:20; author: edwin; state: Exp; lines: +3 -2
PERL -> REINPLACE
Noticed on: bento
v. 1.3
date: 2001/06/07 08:42:49; author: greid; state: Exp; lines: +3 -3
Update to version 2.10
PR: 27904
Submitted by: Jose Marques
v. 1.2
date: 2001/03/29 16:34:20; author: sobomax; state: Exp; lines: +2 -2
-pthread --> ${PTHREAD_LIBS}
-D_THREAD_SAFE --> ${PTHREAD_CFLAGS}
Note: my first intention was to test this out on bento/beta, but per ade's
requiest I opted to do it quickly.
v. 1.1
date: 2001/03/10 19:33:50; author: will; state: Exp;
Add dnrd 2.9, a proxy DNS daemon.
PR: 24107
Submitted by: George Reid
=============================================================================
|
| |

|