Re: bind 9.60p1 on solaris 10

2009-02-23 Thread Gary Mills
In gnkslg$3u...@sf1.isc.org Mark Andrews mark_andr...@isc.org writes:

In message 937393c4-77a8-4dba-8a4f-14560c25c...@o11g2000yql.googlegroups.com,
 SN writes:
 
 libcrypto.so.0.9.8 is not being found as a link library.  Trying to
 run as in a chroot'ed environment on solaris 10 (core install).
 Kindly advise.

   Install the package that includes OpenSSL.
 

The Solaris 10 package is SUNWopenssl-libraries, but that provides
only /usr/sfw/lib/libcrypto.so.0.9.7.  If bind requires
libcrypto.so.0.9.8, it's not going to build on Solaris 10.

-- 
-Gary Mills--Unix Support--U of M Academic Computing and Networking-
___
bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: bind 9.60p1 on solaris 10

2009-02-23 Thread SN
On Feb 19, 7:14 pm, Mark Andrews mark_andr...@isc.org wrote:
 In message 
 937393c4-77a8-4dba-8a4f-14560c25c...@o11g2000yql.googlegroups.com,

  SN writes:
  Hi Group.

  libcrypto.so.0.9.8 is not being found as a link library.  Trying to
  run as in a chroot'ed environment on solaris 10 (core install).
  Kindly advise.

         Install the package that includes OpenSSL.





  r...@qdc-dns2(bash-3.0)/dns/chroot/usr/local/sbin# ldd /dns/chroot/usr/
  local/sbin/named
          libcrypto.so.0.9.8 =    (file not found)
          libnsl.so.1 =   /usr/lib/libnsl.so.1
          libnsl.so.1 (SUNW_1.9.1) =      (version not found)
          libsocket.so.1 =        /usr/lib/libsocket.so.1
          libscf.so.1 =   /usr/lib/libscf.so.1
          libpthread.so.1 =       /usr/lib/libpthread.so.1
          libthread.so.1 =        /usr/lib/libthread.so.1
          libxml2.so.2 =  /usr/lib/libxml2.so.2
          libz.so.1 =     /usr/lib/libz.so.1
          libm.so.2 =     /usr/lib/libm.so.2
          libc.so.1 =     /usr/lib/libc.so.1
          libmp.so.2 =    /lib/libmp.so.2
          libmd.so.1 =    /lib/libmd.so.1
          libdoor.so.1 =  /lib/libdoor.so.1
          libuutil.so.1 =         /lib/libuutil.so.1
          libgen.so.1 =   /lib/libgen.so.1
          /platform/SUNW,Serverblade1/lib/libc_psr.so.1
          /platform/SUNW,Serverblade1/lib/libmd_psr.so.1

  r...@qdc-dns2(bash-3.0)/dns/chroot/usr/local/sbin# /etc/init.d/dns
  start
  ld.so.1: named: fatal: libcrypto.so.0.9.8: open failed: No such file
  or directory
  Killed

  Kind Regards,
  -Sajed Naseem
  ___
  bind-users mailing list
  bind-us...@lists.isc.org
 https://lists.isc.org/mailman/listinfo/bind-users

 --
 Mark Andrews, ISC
 1 Seymour St., Dundas Valley, NSW 2117, Australia
 PHONE: +61 2 9871 4742                 INTERNET: mark_andr...@isc.org
 ___
 bind-users mailing list
 bind-us...@lists.isc.orghttps://lists.isc.org/mailman/listinfo/bind-users- 
 Hide quoted text -

 - Show quoted text -

thank you.  I installed openssl on the server and it worked.  I had
forgotten that.  It was installed on the server I compiled on.

new error.  Any help would be appreciated.

r...@qdc-dns2(bash-3.0)/dns/chroot# chroot /dns/chroot /usr/local/sbin/
named-checkconf /etc/named.conf
Segmentation Fault (core dumped)

This is off a default named.conf I got off sean boran's website.  No
named.conf is working.


acl nameservers {
  localhost;
  // my primary/sec
  192.168.128.33;
  192.168.128.34;
  // Internet  ISP:
  164.128.36.34;   //ip-plus
  130.59.1.80; //domreg.nic.ch
};

options {
directory /var/named;
// query-source address * port 53;
pid-file /var/run/named.pid;
stacksize 30M;
datasize 20M;
auth-nxdomain yes;  // v9 wants this?
allow-transfer { nameservers; };   // this limits ALL zones
transfer-format many-answers;   // faster transfers
version DNS server;   // hide BIND version
};

/// default zones //

// this is the main file for the domain name server. Each line gives
// the file where is stored the name table for a particular domain.

// named.root / root.hint is not needed for BIND9

// localhost
zone localhost {
type master;
file localhost.zone;
allow-update { none; };
};
// reverse mapping of Loopback address
zone 0.0.127.in-addr.arpa IN {
type master;
file localhost.rev;
notify no;
allow-update { none; };
};

 primaries //
// Transfer ACLs are governered globally above
zone test1.com {
type master;
file test1.com;
allow-update { none; };
};

// reverse mapping example
zone 128.168.192.in-addr.arpa IN {
type master;
file rev.192.168.128;
};

//eof

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


Re: bind 9.60p1 on solaris 10

2009-02-23 Thread bsfinkel
In gnkslg$3u...@sf1.isc.org Mark Andrews mark_andr...@isc.org writes:

In message 937393c4-77a8-4dba-8a4f-14560c25c...@o11g2000yql.googlegroups.com,
 SN writes:
 
 libcrypto.so.0.9.8 is not being found as a link library.  Trying to
 run as in a chroot'ed environment on solaris 10 (core install).
 Kindly advise.

  Install the package that includes OpenSSL.
 

and Gary Mills mi...@cc.umanitoba.ca replied:

The Solaris 10 package is SUNWopenssl-libraries, but that provides
only /usr/sfw/lib/libcrypto.so.0.9.7.  If bind requires

On a Solaris 10 Sparc system:

solaris% strings /usr/sfw/lib/libcrypto.so.0.9.7 | grep security
OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
AES part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
ASN.1 part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
Blowfish part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
Big Number part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
CAST part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
CONF part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
CONF_def part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
libdes part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
DES part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
Diffie-Hellman part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 
2006-09-29)
DSA part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
EVP part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
lhash part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
MD2 part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
MD4 part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
MD5 part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
id-smime-aa-securityLabel
id-smime-aa-securityLabel
security
PEM part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
RAND part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
RC2 part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
RC4 part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
RIPE-MD160 part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
RSA part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
SHA part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
SHA1 part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
Stack part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
TXT_DB part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
X.509 part of OpenSSL 0.9.7d 17 Mar 2004 (+ security patches to 2006-09-29)
solaris%

The filename contains 0.9.7 but the file itself contains security
patches which, I believe, makes it equivalent to 0.9.8.  That is what
my libcrypto expert told me.

I have built 9.6.0-P1 on Solaris 10, and I am running it as a cacheing-
only name server.  My production name servers are also 9.6.0-P1,
but those computers are still running Solaris 9.
--
Barry S. Finkel
Computing and Information Systems Division
Argonne National Laboratory  Phone:+1 (630) 252-7277
9700 South Cass Avenue   Facsimile:+1 (630) 252-4601
Building 222, Room D209  Internet: bsfin...@anl.gov
Argonne, IL   60439-4828 IBMMAIL:  I1004994
___
bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: bind 9.60p1 on solaris 10

2009-02-19 Thread Mark Andrews

In message 937393c4-77a8-4dba-8a4f-14560c25c...@o11g2000yql.googlegroups.com,
 SN writes:
 Hi Group.
 
 libcrypto.so.0.9.8 is not being found as a link library.  Trying to
 run as in a chroot'ed environment on solaris 10 (core install).
 Kindly advise.

Install the package that includes OpenSSL.
 
 r...@qdc-dns2(bash-3.0)/dns/chroot/usr/local/sbin# ldd /dns/chroot/usr/
 local/sbin/named
 libcrypto.so.0.9.8 =(file not found)
 libnsl.so.1 =   /usr/lib/libnsl.so.1
 libnsl.so.1 (SUNW_1.9.1) =  (version not found)
 libsocket.so.1 =/usr/lib/libsocket.so.1
 libscf.so.1 =   /usr/lib/libscf.so.1
 libpthread.so.1 =   /usr/lib/libpthread.so.1
 libthread.so.1 =/usr/lib/libthread.so.1
 libxml2.so.2 =  /usr/lib/libxml2.so.2
 libz.so.1 = /usr/lib/libz.so.1
 libm.so.2 = /usr/lib/libm.so.2
 libc.so.1 = /usr/lib/libc.so.1
 libmp.so.2 =/lib/libmp.so.2
 libmd.so.1 =/lib/libmd.so.1
 libdoor.so.1 =  /lib/libdoor.so.1
 libuutil.so.1 = /lib/libuutil.so.1
 libgen.so.1 =   /lib/libgen.so.1
 /platform/SUNW,Serverblade1/lib/libc_psr.so.1
 /platform/SUNW,Serverblade1/lib/libmd_psr.so.1
 
 r...@qdc-dns2(bash-3.0)/dns/chroot/usr/local/sbin# /etc/init.d/dns
 start
 ld.so.1: named: fatal: libcrypto.so.0.9.8: open failed: No such file
 or directory
 Killed
 
 Kind Regards,
 -Sajed Naseem
 ___
 bind-users mailing list
 bind-users@lists.isc.org
 https://lists.isc.org/mailman/listinfo/bind-users
-- 
Mark Andrews, ISC
1 Seymour St., Dundas Valley, NSW 2117, Australia
PHONE: +61 2 9871 4742 INTERNET: mark_andr...@isc.org
___
bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users