diff options
author | junovitch <junovitch@FreeBSD.org> | 2015-10-10 04:02:04 +0800 |
---|---|---|
committer | junovitch <junovitch@FreeBSD.org> | 2015-10-10 04:02:04 +0800 |
commit | e975d8c1775752b505beb95759261273acb809f6 (patch) | |
tree | 569559176693aebe35a6f4e27ac770518a420810 /net-mgmt | |
parent | c11c748a07fbdfde2bd0bce8e0614d1e8440cca5 (diff) | |
download | freebsd-ports-gnome-e975d8c1775752b505beb95759261273acb809f6.tar.gz freebsd-ports-gnome-e975d8c1775752b505beb95759261273acb809f6.tar.zst freebsd-ports-gnome-e975d8c1775752b505beb95759261273acb809f6.zip |
net-mgmt/lldpd: update 0.7.16 -> 0.7.18
- Add additional information to README on -I interface flag usage
- Change formatting of pkg-message
Changes: https://github.com/vincentbernat/lldpd/compare/0.7.16...0.7.18
PR: 203621
Submitted by: Mathieu Simon <freebsd@simweb.ch> (maintainer)
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/lldpd/Makefile | 2 | ||||
-rw-r--r-- | net-mgmt/lldpd/distinfo | 4 | ||||
-rw-r--r-- | net-mgmt/lldpd/files/README.bsd | 24 | ||||
-rw-r--r-- | net-mgmt/lldpd/pkg-message | 7 |
4 files changed, 31 insertions, 6 deletions
diff --git a/net-mgmt/lldpd/Makefile b/net-mgmt/lldpd/Makefile index 6a2b1ccbb21d..d16c54e768af 100644 --- a/net-mgmt/lldpd/Makefile +++ b/net-mgmt/lldpd/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= lldpd -PORTVERSION= 0.7.16 +PORTVERSION= 0.7.18 CATEGORIES= net-mgmt MASTER_SITES= http://media.luffy.cx/files/${PORTNAME}/ diff --git a/net-mgmt/lldpd/distinfo b/net-mgmt/lldpd/distinfo index 7ba6e32bcdc3..de438dc91241 100644 --- a/net-mgmt/lldpd/distinfo +++ b/net-mgmt/lldpd/distinfo @@ -1,2 +1,2 @@ -SHA256 (lldpd-0.7.16.tar.gz) = a0b85a5e685b8e7dad08b6f20ea79d8bec47d8dbf39daef419bd20ad7f37d63f -SIZE (lldpd-0.7.16.tar.gz) = 1536603 +SHA256 (lldpd-0.7.18.tar.gz) = 6d6ad8e13286addcbf8787d9c407a7f4bdc4f6ae67bb1d81bcd195169f5095d6 +SIZE (lldpd-0.7.18.tar.gz) = 1536290 diff --git a/net-mgmt/lldpd/files/README.bsd b/net-mgmt/lldpd/files/README.bsd index 51da26c7958f..069583854e20 100644 --- a/net-mgmt/lldpd/files/README.bsd +++ b/net-mgmt/lldpd/files/README.bsd @@ -1,3 +1,25 @@ +# Permissions + A normal user has to be member of the _lldpd group in order to run lldpcli. --- Mathieu Simon <freebsd@simweb.ch>, 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 <freebsd@simweb.ch>, Tue, 06 Oct 2015 13:20:00 +02:00 diff --git a/net-mgmt/lldpd/pkg-message b/net-mgmt/lldpd/pkg-message index f775efa6e7eb..42d1db351f59 100644 --- a/net-mgmt/lldpd/pkg-message +++ b/net-mgmt/lldpd/pkg-message @@ -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. |