diff options
author | jim-p <jimp@pfsense.org> | 2016-09-09 10:31:46 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2016-09-09 10:34:18 -0400 |
commit | 332f2a7740ff6800540a0d2113d96b8f1453ca88 (patch) | |
tree | 8a732828c1780884a04ba8ee8dfd8a12e2d6f362 | |
parent | 82bf88b0853951928b7cf1b7930e6f6f1d90f89d (diff) | |
download | FreeBSD-ports-332f2a7740ff6800540a0d2113d96b8f1453ca88.zip FreeBSD-ports-332f2a7740ff6800540a0d2113d96b8f1453ca88.tar.gz |
Fix description on the Management option for LADVD.
The "management" interface does not work on VLAN or LAGG interfaces, but requires a physical interface with an IP address. Automatically using the parent likely would hit an interface that has no address, so there is no good automated way to solve this currently.
When an improper interface is chosen, LADVD will (harmlessly) spam the log with "ladvd: could not detect the specified management interface"
-rw-r--r-- | net/pfSense-pkg-LADVD/Makefile | 3 | ||||
-rw-r--r-- | net/pfSense-pkg-LADVD/files/usr/local/pkg/ladvd.xml | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/net/pfSense-pkg-LADVD/Makefile b/net/pfSense-pkg-LADVD/Makefile index 9553444..7e67eed 100644 --- a/net/pfSense-pkg-LADVD/Makefile +++ b/net/pfSense-pkg-LADVD/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= pfSense-pkg-LADVD -PORTVERSION= 1.2.1 -PORTREVISION= 2 +PORTVERSION= 1.2.2 CATEGORIES= net MASTER_SITES= # empty DISTFILES= # empty diff --git a/net/pfSense-pkg-LADVD/files/usr/local/pkg/ladvd.xml b/net/pfSense-pkg-LADVD/files/usr/local/pkg/ladvd.xml index 3588231..91c9374 100644 --- a/net/pfSense-pkg-LADVD/files/usr/local/pkg/ladvd.xml +++ b/net/pfSense-pkg-LADVD/files/usr/local/pkg/ladvd.xml @@ -110,7 +110,7 @@ <fieldname>management</fieldname> <value>lan</value> <type>interfaces_selection</type> - <description>The management interface for this host. Addresses on this interface are auto-detected (IPv4 and IPv6).</description> + <description>The management interface for this host. Addresses on this interface are auto-detected (IPv4 and IPv6). This must be a physical interface, not a VLAN, LAGG, or other abstracted type.</description> </field> <field> <fielddescr>System Location</fielddescr> |