From owner-svn-ports-branches@freebsd.org Tue Oct 27 13:57:41 2015 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0EE37A1E961; Tue, 27 Oct 2015 13:57:41 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D92C2192B; Tue, 27 Oct 2015 13:57:40 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9RDvdmC013719; Tue, 27 Oct 2015 13:57:39 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9RDvd9g013715; Tue, 27 Oct 2015 13:57:39 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201510271357.t9RDvd9g013715@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 27 Oct 2015 13:57:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r400244 - in branches/2015Q4/net-mgmt/lldpd: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Oct 2015 13:57:41 -0000 Author: mat Date: Tue Oct 27 13:57:39 2015 New Revision: 400244 URL: https://svnweb.freebsd.org/changeset/ports/400244 Log: MFH: r398954 r398994 r400237 net-mgmt/lldpd: update 0.7.16 -> 0.7.19 - Add additional information to README on -I interface flag usage - Change formatting of pkg-message - net-mgmt/lldpd: Add maintainer's mirror to MASTER_SITES Fixes a buffer overflow allowing arbitrary code execution. PR: 203621 204044 Submitted by: maintainer Security: 2a4a112a-7c1b-11e5-bd77-0800275369e2 Sponsored by: Absolight Modified: branches/2015Q4/net-mgmt/lldpd/Makefile branches/2015Q4/net-mgmt/lldpd/distinfo branches/2015Q4/net-mgmt/lldpd/files/README.bsd branches/2015Q4/net-mgmt/lldpd/pkg-message Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/net-mgmt/lldpd/Makefile ============================================================================== --- branches/2015Q4/net-mgmt/lldpd/Makefile Tue Oct 27 13:54:13 2015 (r400243) +++ branches/2015Q4/net-mgmt/lldpd/Makefile Tue Oct 27 13:57:39 2015 (r400244) @@ -2,9 +2,10 @@ # $FreeBSD$ PORTNAME= lldpd -PORTVERSION= 0.7.16 +PORTVERSION= 0.7.19 CATEGORIES= net-mgmt -MASTER_SITES= http://media.luffy.cx/files/${PORTNAME}/ +MASTER_SITES= http://media.luffy.cx/files/${PORTNAME}/ \ + http://mirror.1labs.ch/${PORTNAME}/ MAINTAINER= freebsd@simweb.ch COMMENT= LLDP (802.1ab)/CDP/EDP/SONMP/FDP daemon and SNMP subagent Modified: branches/2015Q4/net-mgmt/lldpd/distinfo ============================================================================== --- branches/2015Q4/net-mgmt/lldpd/distinfo Tue Oct 27 13:54:13 2015 (r400243) +++ branches/2015Q4/net-mgmt/lldpd/distinfo Tue Oct 27 13:57:39 2015 (r400244) @@ -1,2 +1,2 @@ -SHA256 (lldpd-0.7.16.tar.gz) = a0b85a5e685b8e7dad08b6f20ea79d8bec47d8dbf39daef419bd20ad7f37d63f -SIZE (lldpd-0.7.16.tar.gz) = 1536603 +SHA256 (lldpd-0.7.19.tar.gz) = aac11cb1fdc037709517372c70c9bf89c752ab8e5eaab9ce140b84ed5a0507c8 +SIZE (lldpd-0.7.19.tar.gz) = 1656294 Modified: branches/2015Q4/net-mgmt/lldpd/files/README.bsd ============================================================================== --- branches/2015Q4/net-mgmt/lldpd/files/README.bsd Tue Oct 27 13:54:13 2015 (r400243) +++ branches/2015Q4/net-mgmt/lldpd/files/README.bsd Tue Oct 27 13:57:39 2015 (r400244) @@ -1,3 +1,25 @@ +# Permissions + A normal user has to be member of the _lldpd group in order to run lldpcli. --- Mathieu Simon , Tue, 10 Dec 2014 13:40:00 +01:00 +## Notes on lldpd_flags + +Though lldpd_flags is not required to launch lldpd, remember that without +a specified "-I" option lldpd will be listening on _all_ physical interfaces. + +Short examples: + + * Listen only on em0 and enable CDP: + lldpd_flags="-I em0 -c" + * Listen on all interfaces, except em0: + lldpd_flags="-I *,!em0" + +A whitelisted interface beats a blacklisted interface which beats a simple +matched interface. See lldpd(8), which contains the complete documentation. + +## Compatibility + +This port should work equally well on both FreeBSD and DragonFly BSD, though +the later might be a bit less regularly tested. + +-- Mathieu Simon , Tue, 06 Oct 2015 13:20:00 +02:00 Modified: branches/2015Q4/net-mgmt/lldpd/pkg-message ============================================================================== --- branches/2015Q4/net-mgmt/lldpd/pkg-message Tue Oct 27 13:54:13 2015 (r400243) +++ branches/2015Q4/net-mgmt/lldpd/pkg-message Tue Oct 27 13:57:39 2015 (r400244) @@ -1,2 +1,5 @@ -To run lldpd from startup, add lldpd_enable="YES" to your rc.conf. -Add lldpd_flags to your rc.conf to set options. +To run lldpd at startup, add the following line to rc.conf: + + lldpd_enable="YES" + +Add lldpd_flags to rc.conf control its behaviour.