Re: Problems compiling BIND 9.18.28 on Solaris 11.4

2024-08-16 Thread Jaco Lesch

Stacey and Ondrej

Thanks for the feedback and link to the patches. This did indeed did the 
trick and gave insight into the compile problem.


Regards

On 2024/08/14 15:11, Stacey Marshall wrote:


Hi Jaco,

Ondřej is right, for Solaris build I have to patch two Makefiles to 
change the order of the library paths such that the OpenSSL 3 
libraries are found.
Once Solaris 11.4 moves OpenSSL 1 out of the way the patch wont be 
needed but until then...


https://github.com/oracle/solaris-userland/blob/master/components/bind/patches/006-OpenSSL-3.patch

See also https://gitlab.isc.org/isc-projects/bind9/-/issues/3414

Regards,

Stacey

On 14 Aug 2024, at 14:03, Ondřej Surý wrote:

Hi Jaco,

my guees is that you are compiling this against OpenSSL 3.x
headers, but linking it to old libssl.so <http://libssl.so/> .1

Using gmake V=1 should give you more insight about the linker
flags and paths used, but generally
having two different versions of libssl.so <http://libssl.so/>
(development version) is not supported as it is impossible
to get right when mixing libraries from different directories.

I would suggest uninstalling the system development OpenSSL
libraries (keeping just the shared libs)
and trying again.

Ondrej
-- 
Ondřej Surý (He/Him)

ond...@isc.org

My working hours and your working hours may be different. Please
do not feel obligated to reply outside your normal working hours.

On 14. 8. 2024, at 13:43, Jaco Lesch  wrote:

Hi all

Having a problem to get BIND 9.18.28 to compile on Solaris
11.4 on x86 and SPARC. Getting the following errors when
running "gmake", similar errors on both x86 and SPARC :
==

Making all in misc
gmake[3]: Entering directory
'/usr/local/src/bind-9.18.28/doc/misc'
CC cfg_test-cfg_test.o
CCLD cfg_test
ld: warning: file
/usr/local/src/bind-9.18.28/lib/dns/.libs/libdns.so: linked to
../../lib/dns/.libs/libdns.so: attempted multiple inclusion of
file
ld: warning: file
/usr/local/src/bind-9.18.28/lib/isc/.libs/libisc.so: linked to
../../lib/isc/.libs/libisc.so: attempted multiple inclusion of
file
Undefined first referenced
symbol in file
TLS_client_method ../../lib/isc/.libs/libisc.so
SSL_CTX_set_options ../../lib/isc/.libs/libisc.so
SSL_CTX_set0_tmp_dh_pkey ../../lib/isc/.libs/libisc.so
SSL_SESSION_is_resumable ../../lib/isc/.libs/libisc.so
.
.
.

EVP_MD_CTX_free ../../lib/isc/.libs/libisc.so
SSL_session_reused ../../lib/isc/.libs/libisc.so
X509_getm_notBefore ../../lib/isc/.libs/libisc.so
ld: fatal: symbol referencing errors
collect2: error: ld returned 1 exit status
gmake[3]: *** [Makefile:597: cfg_test] Error 1
gmake[3]: Leaving directory
'/usr/local/src/bind-9.18.28/doc/misc'
gmake[2]: *** [Makefile:452: all-recursive] Error 1
gmake[2]: Leaving directory '/usr/local/src/bind-9.18.28/doc'
gmake[1]: *** [Makefile:629: all-recursive] Error 1
gmake[1]: Leaving directory '/usr/local/src/bind-9.18.28'
gmake: *** [Makefile:535: all] Error 2
===

I configure with the following variables set:
=
CC=/usr/bin/gcc
CFLAGS="-m64 -fPIC -DPIC -O3"
LDFLAGS=""
CPPFLAGS="-m64"
PKG_CONFIG_PATH=/usr/openssl/3/lib/64/pkgconfig:/usr/lib/amd64/pkgconfig

MAKE=/usr/gnu/bin/make
=

And have attempted both the Solaris "ld" and GNU "ld" with
similar results. Any advice and guidance regarding this matter
will be appreciated.

Thanks

-- 
---

Jaco Lesch
SAIX HLS
Email: ja...@saix.net

-- 
Visit https://lists.isc.org/mailman/listinfo/bind-users to

unsubscribe from this list

ISC funds the development of this software with paid support
subscriptions. Contact us at https://www.isc.org/contact/ for
more information.

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

-- 
Visit https://lists.isc.org/mailman/listinfo/bind-users to

unsubscribe from this list

ISC funds the development of this software with paid support
subscriptions. Contact us at https://www.isc.org/contact/ for more
information.

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

--
Stacey <https://stacey

Problems compiling BIND 9.18.28 on Solaris 11.4

2024-08-14 Thread Jaco Lesch

Hi all

Having a problem to get BIND 9.18.28 to compile on Solaris 11.4 on x86 
and SPARC. Getting the following errors when running "gmake", similar 
errors on both x86 and SPARC :

==
Making all in misc
gmake[3]: Entering directory '/usr/local/src/bind-9.18.28/doc/misc'
  CC   cfg_test-cfg_test.o
  CCLD cfg_test
ld: warning: file /usr/local/src/bind-9.18.28/lib/dns/.libs/libdns.so: 
linked to ../../lib/dns/.libs/libdns.so: attempted multiple inclusion of 
file
ld: warning: file /usr/local/src/bind-9.18.28/lib/isc/.libs/libisc.so: 
linked to ../../lib/isc/.libs/libisc.so: attempted multiple inclusion of 
file

Undefined            first referenced
 symbol              in file
TLS_client_method   ../../lib/isc/.libs/libisc.so
SSL_CTX_set_options ../../lib/isc/.libs/libisc.so
SSL_CTX_set0_tmp_dh_pkey    ../../lib/isc/.libs/libisc.so
SSL_SESSION_is_resumable    ../../lib/isc/.libs/libisc.so
.
.
.

EVP_MD_CTX_free ../../lib/isc/.libs/libisc.so
SSL_session_reused  ../../lib/isc/.libs/libisc.so
X509_getm_notBefore ../../lib/isc/.libs/libisc.so
ld: fatal: symbol referencing errors
collect2: error: ld returned 1 exit status
gmake[3]: *** [Makefile:597: cfg_test] Error 1
gmake[3]: Leaving directory '/usr/local/src/bind-9.18.28/doc/misc'
gmake[2]: *** [Makefile:452: all-recursive] Error 1
gmake[2]: Leaving directory '/usr/local/src/bind-9.18.28/doc'
gmake[1]: *** [Makefile:629: all-recursive] Error 1
gmake[1]: Leaving directory '/usr/local/src/bind-9.18.28'
gmake: *** [Makefile:535: all] Error 2
===

I configure with the following variables set:
=
CC=/usr/bin/gcc
CFLAGS="-m64 -fPIC -DPIC -O3"
LDFLAGS=""
CPPFLAGS="-m64"
PKG_CONFIG_PATH=/usr/openssl/3/lib/64/pkgconfig:/usr/lib/amd64/pkgconfig
MAKE=/usr/gnu/bin/make
=

And have attempted both the Solaris "ld" and GNU "ld" with similar 
results. Any advice and guidance regarding this matter will be appreciated.


Thanks

--
---
Jaco Lesch
SAIX HLS
Email: ja...@saix.net

--
Visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe from 
this list

ISC funds the development of this software with paid support subscriptions. 
Contact us at https://www.isc.org/contact/ for more information.


bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: [Non-DoD Source] Re: Upgrading from BIND 9.14.9 to 9.16.3

2020-05-28 Thread Jaco Lesch

Jim

I have compiled BIND 9.16.2 on Solaris 11.4 SPARC with "libuv", try and 
set these 2 environment variables before running "./configure":

LDFLAGS="-L/usr/local/lib -R/usr/local/lib"
PKG_CONFIG_PATH="/usr/lib/sparcv9/pkgconfig:/usr/local/lib/pkgconfig"

Regards

On 5/28/20 17:54, DeCaro, James John (Jim) CIV DISA FE (USA) via 
bind-users wrote:

Thank you.  amd64 does not exist in the /usr/local/lib/ directory.  This is a 
Solaris 11.4 x86 64 bit system so that may be why.  I will keep looking.

Thanks again


V/R
Jim DeCaro
DISA
Systems Administrator
Windows and Unix Server Operations
FE222/DoDNet Service Section
Defense Enclave Services Directorate
☎ 301-225-8180
☎ 301-375-8180
james.j.decaro3@mail.mil
james.j.decaro3@mail.smil.mil

"If you always do what you always did you will always get what you always got."


-Original Message-
From: bind-users  On Behalf Of Michal Nowak
Sent: Thursday, May 28, 2020 5:13 AM
To: bind-users@lists.isc.org
Subject: Re: [Non-DoD Source] Re: Upgrading from BIND 9.14.9 to 9.16.3

All active links contained in this email were disabled.  Please verify the 
identity of the sender, and confirm the authenticity of all links contained 
within the message prior to copying and pasting the address to a Web browser.






On 27/05/2020 20:22, DeCaro, James John (Jim) CIV DISA FE (USA) via
bind-users wrote:

ld.so.1: gen: fatal: libuv.so.1: open failed: No such file or directory

...


$ find / -name libuv* -print
/usr/local/lib/libuv.so
/usr/local/lib/libuv.la
/usr/local/lib/libuv.so.1
/usr/local/lib/libuv.a
/usr/local/lib/libuv.so.1.0.0

Jim, I believe you installed 64-bit libuv to a 32-bit directory (i.e.
/usr/local/lib/) and that's why linker can't find it. You should have
installed libuv to the 64-bit directory (i.e. /usr/local/lib/amd64/),
e.g. via

./configure ... --libdir=/usr/local/lib/amd64

PKG_CONFIG_PATH should have been set to 64-bit path too, i.e.
/usr/local/lib/amd64/pkgconfig.

Michal
___
Please visit Caution-https://lists.isc.org/mailman/listinfo/bind-users to 
unsubscribe from this list

ISC funds the development of this software with paid support subscriptions. 
Contact us at Caution-https://www.isc.org/contact/ for more information.


bind-users mailing list
bind-users@lists.isc.org
Caution-https://lists.isc.org/mailman/listinfo/bind-users
___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

ISC funds the development of this software with paid support subscriptions. 
Contact us at https://www.isc.org/contact/ for more information.


bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


--
---
Jaco Lesch
SAIX HLS
Email: ja...@saix.net

___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

ISC funds the development of this software with paid support subscriptions. 
Contact us at https://www.isc.org/contact/ for more information.


bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: Problem building BIND 9.11.14 on SPARC Solaris 10

2019-12-30 Thread Jaco Lesch

Jeff

Picking up a similar error when compiling on Solaris 11.4 with Oracle 
Studio 12.6:


libtool: compile: 
/opt/SunStudio/OracleDeveloperStudio12.6-solaris-sparc-bin/developerstudio12.6/bin/cc 
-mt -I/usr/local/src/bind-9.11.14 -I../.. -I./unix/include 
-I./pthreads/include -I./noatomic/include -I./include -I./include 
-I/usr/local/src/bind-9.11.14/lib/dns/include -I../../lib/dns/include 
-D_REENTRANT -DOPENSSL "-DPK11_LIB_LOCATION=\"undefined\"" -D_XPG4_2 
-D__EXTENSIONS__ -m64 -fast -Qoption cg -xregs=no%appl -W2,-xwrap_int 
-xmemalign=16s -mt -xatomic=none -I/usr/include/libxml2 -c stats.c  
-KPIC -DPIC -o .libs/stats.o

"stats.c", line 300: undefined symbol: val
cc: acomp failed for stats.c
*** Error code 1

Changing line 300 to "value", it then compiles just fine.

Regards



On 12/21/19 08:35, Wieland, Jeffrey J. wrote:

Compiling with Solaris Studio 12.2 and Oracle Studio 12.4, I get
the following error:

libtool: compile:  /opt/solstudio12.2/bin/cc -m32 -L/opt/openssl-1.1/lib
-R/opt/openssl-1.1/lib -D_STDC_C99= -mt
-I/opt/src/sys/bind/sun4u/bind-9.11.14 -I../.. -I./unix/include
-I./pthreads/include -I./noatomic/include -I./include -I./include
-I/opt/src/sys/bind/sun4u/bind-9.11.14/lib/dns/include
-I../../lib/dns/include -I/opt/openssl-1.1/include -D_REENTRANT
-DOPENSSL -DPK11_LIB_LOCATION=\"undefined\" -D_XPG4_2 -D__EXTENSIONS__
-m32 -xtarget=ultra -xarch=sparcvis -xO0 -I/usr/include/libxml2 -KPIC -c
stats.c  -KPIC -DPIC -o .libs/stats.o
"stats.c", line 300: undefined symbol: val
cc: acomp failed for stats.c

line 300 is:

      stats->counters[counter] = val;

I'm pretty sure that val should be value, since there is no "val"
anywhere in that file.  At least it compiles that way; I haven't
tested it yet.



--
---
Jaco Lesch
SAIX HLS
Email: ja...@saix.net

___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: BIND 9.11.6-P1 build fails on Solaris

2019-04-26 Thread Jaco Lesch via bind-users

On 4/26/19 18:13, Wieland, Jeffrey J. wrote:

Jaco Lesch via bind-users wrote:


Both BIND 9.11.5-P4 and 9.11.6 build fine with the following configure
settings:
./configure --prefix=/opt/local --libdir=/opt/local/lib/dns/sparcv9 \
     --sysconfdir=/etc \
     --localstatedir=/var \
     --with-randomdev=/dev/random \
     --with-tuning=large \
     --with-gssapi=krb5-config \
     --with-libtool \
     --with-openssl \
     --without-pkcs11 \
     --without-dlopen \
     --enable-full-report \
     --with-python=/usr/bin/python3.5 \
--with-python-install-dir=/usr/lib/python3.5/vendor-packages \
     --enable-threads --enable-ipv6 --enable-devpoll

Compiled with both Studio 12.6 and GCC 7.3.0.

Thanks

--
---
Jaco Lesch
SAIX HLS
Email:ja...@saix.net


Jaco, what version of Solaris did you build this on?


Jeffrey

The compile is on Solaris 11.4 Sparc, sorry for that slip of the 
fingers. Will have a look and see what X86-64 version of Solaris 11.4 
does next week also.


Regards

--
---
Jaco Lesch
SAIX HLS
Email: ja...@saix.net

___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: BIND 9.11.6-P1 build fails on Solaris

2019-04-26 Thread Jaco Lesch via bind-users

On 4/25/19 21:04, greg.ra...@bt.com wrote:


BIND 9.11.5-P4 built fine on this Solaris 10 environment with same 
configure settings:


--enable-ipv6 \

--enable-filter- \

--enable-largefile \

--enable-fixed-rrset \

--enable-threads \

--disable-shared \

--with-dlopen=no \

--with-openssl=/opt/bind911/openssl\

--with-geoip=/opt/bind911/geoip \

--without-gssapi --without-python \

--prefix=/opt/bind911

However, now the build fails for BIND 9.11.6-P1 with the following:

Undefined first referenced

symbol in file

isc_atomic_xadd client.o

ld: fatal: symbol referencing errors. No output written to namedtmp0

*** Error code 1

make: Fatal error: Command failed for target `named'

Thanks,

Greg


___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users
Experiencing a similar issue with BIND 9.11.6-P1 on Solaris 11.4, the 
build fails with the following:


Undefined   first referenced
 symbol in file
isc_atomic_xadd .libs/client.o
ld: fatal: symbol referencing errors
collect2: error: ld returned 1 exit status
*** Error code 1
make: Fatal error: Command failed for target `named'
Current working directory /usr/local/src/bind-9.11.6-P1/bin/named
*** Error code 1
The following command caused the error:
for i in named rndc dig delv dnssec tools nsupdate check confgen python  
tests nulldir; do \

    if [ "$i" != "nulldir" -a -d $i ]; then \
    echo "making all in `pwd`/$i"; \
    (cd $i; make  DESTDIR="" all) || exit 1; \
    fi; \
done
make: Fatal error: Command failed for target `subdirs'
Current working directory /usr/local/src/bind-9.11.6-P1/bin
*** Error code 1
The following command caused the error:
for i in make lib bin doc nulldir; do \
    if [ "$i" != "nulldir" -a -d $i ]; then \
    echo "making all in `pwd`/$i"; \
    (cd $i; make  DESTDIR="" all) || exit 1; \
    fi; \
done
make: Fatal error: Command failed for target `subdirs'


Both BIND 9.11.5-P4 and 9.11.6 build fine with the following configure 
settings:

./configure --prefix=/opt/local --libdir=/opt/local/lib/dns/sparcv9 \
    --sysconfdir=/etc \
    --localstatedir=/var \
    --with-randomdev=/dev/random \
    --with-tuning=large \
    --with-gssapi=krb5-config \
    --with-libtool \
    --with-openssl \
    --without-pkcs11 \
    --without-dlopen \
    --enable-full-report \
    --with-python=/usr/bin/python3.5 \
--with-python-install-dir=/usr/lib/python3.5/vendor-packages \
    --enable-threads --enable-ipv6 --enable-devpoll

Compiled with both Studio 12.6 and GCC 7.3.0.

Thanks

--
---
Jaco Lesch
SAIX HLS
Email: ja...@saix.net

___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: Caching server - named process is limit at 500MB

2013-04-17 Thread Jaco Lesch

Chu

My version of BIND is compiled 64-bit and running:
>~: file bin/named/named
bin/named/named:ELF 64-bit MSB executable SPARCV9 Version 1, 
dynamically linked, not stripped


Compiled with Studio I passed the following variables in configure:
CC="/bin/cc"
CXX="/bin/CC"
F77="/bin/f77"
CFLAGS="-m64 -Qoption cg -xregs=no%appl -xmemalign=8s -mt"
CXXFLAGS="-m64"
LDFLAGS="-L/usr/sfw/lib/64:/lib/64:/usr/lib/64"
LIBS="-l/usr/sfw/lib/64"
LD_LIBRARY_PATH="/usr/sfw/lib/64:/lib/64:/usr/lib/64"

The important flag is CFLAGS="-m64" to tell make to generate 64-bit 
binaries.


For GCC you can do something like this for configure:
CC=/usr/bin/gcc
CFLAGS="-m64 -mcpu=v9"
CXX=/usr/bin/g++
CXXFLAGS="-m64 -mcpu=v9"
F77=/usr/bin/gfortran

See how that goes. If you are going to use DNSSEC make sure OpenSSL also 
have 64 libraries available.


Regards


On 17/04/2013 04:46, Chu Ha Khanh wrote:

Hi,

Here is my output from command. It looks like my bind version is actually 32
bit. But there are some default applications also 32 bit although all are
installed on a 64 bit OS. I have to check this for a moment.

bash-3.2# file `which named`
/usr/local/sbin/named:  ELF 32-bit LSB executable 80386 Version 1,
dynamically linked, not stripped
bash-3.2#
bash-3.2# file /usr/local/bin/gcc
/usr/local/bin/gcc: ELF 32-bit LSB executable 80386 Version 1 [FPU],
dynamically linked, not stripped
bash-3.2# file `which java`
/usr/bin/java:  ELF 32-bit LSB executable 80386 Version 1 [FPU], dynamically
linked, not stripped, no debugging information available
bash-3.2# isainfo -kv
64-bit amd64 kernel modules

Thanks and Best Regards,
  Website: www.svtech.com.vn  E-mail: khanh@svtech.com.vn

-Original Message-
From: Mike Hoskins (michoski) [mailto:micho...@cisco.com]
Sent: Wednesday, April 17, 2013 9:34 AM
To: Chu Ha Khanh; 'Jaco Lesch'
Cc: bind-users@lists.isc.org
Subject: Re: Caching server - named process is limit at 500MB

-Original Message-

From: Chu Ha Khanh 
Date: Tuesday, April 16, 2013 10:25 PM
To: 'Jaco Lesch' 
Cc: "bind-users@lists.isc.org" 
Subject: RE: Caching server - named process is limit at 500MB


Hi,

How to check 64 bit version of bind?

I often download source code from isc.org and compile on 64 bit Solaris
10 OS then. I always consider my version is 64 bit.

$ file `which named`
/usr/sbin/named: ELF 64-bit LSB shared object, AMD x86-64, version 1 (SYSV),
for GNU/Linux 2.6.9, stripped


(or whatever path to the right named executable...)



--
---
Jaco Lesch
SAIX HLS
Email: ja...@saix.net

___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: Solaris 11

2013-04-16 Thread Jaco Lesch

John

When you do compile from source maybe look at BIND 9.9.3rc1, as this 
have some fixes in for Solaris 11 in a 64-bit mode. We are running a 
patched version of 9.9.2 successfully in our environment.


Regards


On 15/04/2013 22:24, Manson, John wrote:


I searched www.isc.org <http://www.isc.org> to no avail.

Is bind 9.9.x compatible with Solaris 11?

Anything out of the ordinary with compiling and such?

Thanks

John Manson

CAO/HIR/NAF Data-Communications | U.S. House of Representatives | 
Washington, DC 20515


Desk: 202-226-4244 | TCC: 202-226-6430 | john.man...@mail.house.gov 
<mailto:john.man...@mail.house.gov>




___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


--
---
Jaco Lesch
SAIX HLS
Email: ja...@saix.net

___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

Re: Caching server - named process is limit at 500MB

2013-04-11 Thread Jaco Lesch

Chu

Had the same issue in the past on Solaris 8 and 9 day as the default 
compiled binaries is 32-bit which seem to limit memory usage to 512 MB. 
You can modify the configure script/source to use more memory in 32-bit, 
but I will suggest you to move to 64-bit versions of BIND.


When we migrated to Solaris 10, I compiled from source with 64-bit 
support, this you need to specify in the configure script and there is 
some other edits you might have yo do if you need SSL support for DNSsec.


You can compile the source with GCC or Studio, they both work fine.

If you need any specific help, you are welcome to contact me directly.

Regards


On 12/04/2013 05:25, Chu Ha Khanh wrote:


Hi,

We deploy bind 9.x.x cache server, solaris 10 sparc on a system that 
 servicing large customers. We face an issue that  bind process on a 
server is limit at 500MB. If number of request to the server  is 
increase, bind is hang and unable to response queries. We recognize 
the named process is at 500MB when it is hang.


To face this issue we make many virtual machines on a physical server 
( zones in solaris sparc, and xen on intel ) to increase performance. 
Because we can increase the performance on a physical server,  so we 
can deduce that the issue is not cause by hardware limit. It may be a 
software bug or miss configuration.


Please take a look for my issue. I would appreciate any help.

Thanks and Best Regards,

 Website: www.svtech.com.vn   E-mail: 
khanh@svtech.com.vn 




___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

Solaris 11 and BIND 64-bit

2012-10-17 Thread Jaco Lesch
Anybody have had any luck to get the latest BIND 9.9.2 to compiled on 
Solaris 11 SPARC to support 64-bit binaries?


I have tried with both GCC version 4.5.2 and Solaris Studio 12.3. 
Everything configure, link and compile fine, but when I try to run named 
or dig I get core dumps. Not sure if the same hold true on x86-64 platforms.


Any insight/help in this will be appreciated.

Regards

--
---
Jaco Lesch
SAIX HLS
Email: ja...@saix.net

___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: logging to syslog on another host?

2012-05-30 Thread Jaco Lesch

Sten

The syslog daemon on the machine where BIND runs on will send the syslog 
messages to the central syslog server. So you need to configure your 
syslog.conf file to send the facility that BIND uses, normaly daemon, to 
the remote syslog server.


The syslog.conf on Solaris looks something like this:
# logging to remote syslog server
daemon.info@syslog.domain.com
# send to local file on server
daemon.info/var/log/messages

Hope this helps.

Regards

On 30/05/2012 12:16, Sten Carlsen wrote:

Hi

I was considering to use the syslog on a different host for logging 
from bind. The purpose was to collect logs from various places into 
one repository.


This is not a busy installation so performance is not expected to be a 
problem.


I looked in the arm but could not see where I could put the 
IP/hostname of the host to receive the syslog.


Question:
Can bind send its logging output to an external syslog?
If it can, what is needed in terms of version etc.? How to put this 
into log statement?


Thanks in advance.
--
Best regards

Sten Carlsen

No improvements come from shouting:
"MALE BOVINE MANURE!!!"


This body part will be downloaded on demand.


--
---
Jaco Lesch
SAIX HLS
Email: ja...@saix.net


___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users