From owner-freebsd-stable@FreeBSD.ORG Tue Dec 2 09:29:04 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B93816A4CE; Tue, 2 Dec 2003 09:29:04 -0800 (PST) Received: from octo.sytes.net (h24-66-40-188.ed.shawcable.net [24.66.40.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9587743FD7; Tue, 2 Dec 2003 09:28:59 -0800 (PST) (envelope-from otacon@octo.sytes.net) Received: from octo.sytes.net (localhost [127.0.0.1]) by octo.sytes.net (8.12.10/8.12.10) with ESMTP id hB2HSrOG074423; Tue, 2 Dec 2003 10:28:54 -0700 (MST) (envelope-from otacon@octo.sytes.net) Received: from localhost (localhost [[UNIX: localhost]]) by octo.sytes.net (8.12.10/8.12.10/Submit) id hB2HSrJL074422; Tue, 2 Dec 2003 10:28:53 -0700 (MST) (envelope-from otacon) From: Dr Otacon Organization: Skimask Ninja Productions To: freebsd-ipfw@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Date: Tue, 2 Dec 2003 10:28:52 -0700 User-Agent: KMail/1.5.4 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200312021028.52517.otacon@octo.sytes.net> Subject: tcpdump will not compile with ability to decrypt ESP encapsulated packets. X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: otacon@octo.sytes.net List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Dec 2003 17:29:04 -0000 I'm trying to tcpdump ESP encapsulated packets with tcpdump using: tcpdump -w tcpdump.log -E blowfish-cbc:secret esp host safehost ...but `tcpshow < tcpdump.log' has this message repeated at the end of every packet: <*** No decode support for encapsulated protocol ***> I have both /usr/lib/libcrypto.so (base) and /usr/local/lib/libcrypto.so (port) installed, which I think may be causing some kind of a conflict. IPSec is working fine between the two computers. Here's the output of the nm command on the crypto libraries... # nm /usr/local/lib/libcrypto.* | grep BF_cbc_encrypt 00000840 T BF_cbc_encrypt U BF_cbc_encrypt 00049830 T BF_cbc_encrypt 00049830 T BF_cbc_encrypt [root@octo]-[/var/log]# nm /usr/lib/libcrypto.* | grep BF_cbc_encrypt U BF_cbc_encrypt 00000868 T BF_cbc_encrypt And another command.... # ldd `which tcpdump` /usr/sbin/tcpdump: libpcap.so.2 => /usr/lib/libpcap.so.2 (0x280a9000) libc.so.4 => /usr/lib/libc.so.4 (0x280c5000) Any help is appreciated. TIA