Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Aug 2016 20:03:20 +0000 (UTC)
From:      Mark Felder <feld@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r420301 - branches/2016Q3/net-mgmt/rancid3
Message-ID:  <201608162003.u7GK3KQ6049197@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: feld
Date: Tue Aug 16 20:03:20 2016
New Revision: 420301
URL: https://svnweb.freebsd.org/changeset/ports/420301

Log:
  MFH: r420300
  
  net-mgmt/rancid3: Fix SSH on FreeBSD 11.0
  
  RANCID by default attempts to ssh to devices with 3des as the cipher.
  This no longer works with OpenSSH in FreeBSD 11 as you need to be more
  specific. Changing this to 3des-cbc works for now, but future versions
  of OpenSSH will break this as well. Unfortunately this will break RANCID
  as many network devices do not support modern ciphers, but we will have
  to deal with that when the time comes.
  
  Approved by:	ports-secteam (with hat)

Modified:
  branches/2016Q3/net-mgmt/rancid3/Makefile
Directory Properties:
  branches/2016Q3/   (props changed)

Modified: branches/2016Q3/net-mgmt/rancid3/Makefile
==============================================================================
--- branches/2016Q3/net-mgmt/rancid3/Makefile	Tue Aug 16 20:02:15 2016	(r420300)
+++ branches/2016Q3/net-mgmt/rancid3/Makefile	Tue Aug 16 20:03:20 2016	(r420301)
@@ -3,7 +3,7 @@
 
 PORTNAME=	rancid
 PORTVERSION=	3.4.1
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	net-mgmt
 MASTER_SITES=	ftp://ftp.shrubbery.net/pub/rancid/
 PKGNAMESUFFIX=	3
@@ -59,6 +59,8 @@ pre-everything::
 post-patch:
 	${REINPLACE_CMD} "s|par.1|rancid-par.1|" ${WRKSRC}/man/Makefile.in
 	${MV} ${WRKSRC}/man/par.1 ${WRKSRC}/man/rancid-par.1
+	${REINPLACE_CMD} "s|3des|3des-cbc|g" ${WRKSRC}/bin/*.in ${WRKSRC}/cloginrc.sample \
+	    ${WRKSRC}/man/cloginrc.5 ${WRKSRC}/man/clogin.1
 
 post-install:
 	${LN} -s ${PREFIX}/libexec/${PORTNAME}/rancid-cvs ${STAGEDIR}${PREFIX}/bin



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608162003.u7GK3KQ6049197>