Port details |
- ifdepd Interface Dependency daemon
- 20110412_1 net
=0 Version of this port present on the latest quarterly branch. - Maintainer: alex@hugo.bmg.gv.at
 - Port Added: 2005-03-16 21:24:13
- Last Update: 2022-07-20 14:22:37
- Commit Hash: 6a378e5
- License: not specified in port
- Description:
- ifdepd implements dependencies between network interfaces in a
reliable way. If any of the source interfaces fails, ifdepd sets all
destination interfaces to state down. If all source interfaces are active,
ifdepd sets all destination interfaces to state up.
For example, it can be used with carp(4) to provide failover functionality
on gateways/firewalls.
ifdepd is a simple replacement for ifstated and was written because of problems
with ifstated.
Alexander Hausner <alex@hugo.bmg.gv.at>
- SVNWeb : git
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- To install the port:
- cd /usr/ports/net/ifdepd/ && make install clean
- To add the package, run one of these commands:
- pkg install net/ifdepd
- pkg install ifdepd
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: ifdepd
- Flavors: there is no flavor information for this port.
- distinfo:
- SHA256 (ifdepd-20110412.tar.gz) = ffb1d34ad3f5f17471c6294526c901fad9191474bbb482863b9494156750d00f
SIZE (ifdepd-20110412.tar.gz) = 7091
- Packages (timestamps in pop-ups are UTC):
- There are no ports dependent upon this port
- Configuration Options:
- No options to configure
- Options name:
- net_ifdepd
- pkg-message:
- For install:
- To run ifdepd from startup, add
ifdepd_enable="YES" to /etc/rc.conf
Available variables you add/set to /etc/rc.conf.
- ifdepd_enable (bool): Set to "NO" by default.
Set it to "YES" to enable ifdepd.
- ifdepd_src_ifaces(str): Set to "" by default.
Contains a space separated list
of source interfaces.
- ifdepd_dst_ifaces(str): Set to "" by default.
Contains a space separated list
of destination interfaces.
- Master Sites:
|
Commit History - (may be incomplete: see SVNWeb link above for full details) |
Date | By | Description |
20 Jul 2022 14:22:37 20110412_1 |
Tobias C. Berner (tcberner)  |
net: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* <ports@c0decafe.net>
* Aaron Dalton <aaron@FreeBSD.org>
* Aaron Straup Cope <ascope@cpan.org>
* Aaron Zauner <az_mail@gmx.at>
* Adam Jette <jettea46@yahoo.com>
* Adam Weinberger <adamw@FreeBSD.org>
* Alan Eldridge <alane@geeksrus.net>
* Alex Bakhtin <Alex.Bakhtin@gmail.com>
* Alex Deiter <Alex.Deiter@Gmail.COM>
* Alex Dupre <ale@FreeBSD.org>
* Alex Dupre <sysadmin@alexdupre.com> (Only the first 15 lines of the commit message are shown above ) |
21 Sep 2021 18:26:13 20110412_1 |
Dimitry Andric (dim)  |
net/ifdepd: fix clang 13 warnings and non-static inline functions
Building net/ifdepd with clang and lld 13 results in a few warnings, and
a link error:
cc -O2 -pipe -fstack-protector-strong -fno-strict-aliasing -Wall
-Wnested-externs -Wpointer-arith -Winline -Wcast-qual -Wredundant-decls -c
ifdepd.c -o ifdepd.o
ifdepd.c:420:4: warning: misleading indentation; statement is not part of the
previous 'if' [-Wmisleading-indentation]
free(d_ints);
^
ifdepd.c:418:2: note: previous statement is here
if (D)
^
ifdepd.c:434:4: warning: misleading indentation; statement is not part of the
previous 'if' [-Wmisleading-indentation]
free(s_ints);
^ (Only the first 15 lines of the commit message are shown above ) |
06 Apr 2021 14:31:13 20110412 |
Mathieu Arnold (mat)  |
all: Remove all other $FreeBSD keywords. |
06 Apr 2021 14:31:07 20110412 |
Mathieu Arnold (mat)  |
Remove # $FreeBSD$ from Makefiles. |
14 Aug 2019 08:48:51
20110412 |
mat  |
Convert to UCL & cleanup pkg-message (categories n)
(and missed 3 missed files from previous categories.) |
04 Jun 2014 11:47:32
20110412 |
miwi  |
- Stage support
PR: 190610
Submitted by: maintainer |
20 Sep 2013 22:10:25
20110412 |
bapt  |
Add NO_STAGE all over the place in preparation for the staging support (cat:
net) |
29 Jul 2012 11:17:04
20110412 |
cs  |
Fix typos in COMMENT
Approved by: portmgr@ (implicit) |
14 Jan 2012 08:57:23
20110412 |
dougb  |
In the rc.d scripts, change assignments to rcvar to use the
literal name_enable wherever possible, and ${name}_enable
when it's not, to prepare for the demise of set_rcvar().
In cases where I had to hand-edit unusual instances also
modify formatting slightly to be more uniform (and in
some cases, correct). This includes adding some $FreeBSD$
tags, and most importantly moving rcvar= to right after
name= so it's clear that one is derived from the other. |
15 Apr 2011 13:23:12
20110412 |
pav  |
- Update to 20110412
PR: ports/156354
Submitted by: Alexander Hausner <alex@hugo.bmg.gv.at> (maintainer) |
21 Nov 2010 22:55:13
20050420_3 |
nivit  |
- Fix a syntax error in the ifdepd startup script
- Bump PORTREVISION
- Remove the MD5 checksum from distinfo
PR: ports/152397
Submitted by: Alexander Hausner <alex@hugo.bmg.gv.at> (maintainer) |
27 Mar 2010 00:15:24
20050420_2 |
dougb  |
Begin the process of deprecating sysutils/rc_subr by
s#. %%RC_SUBR%%#. /etc/rc.subr# |
20 Jul 2009 18:55:59
20050420_2 |
dougb  |
Tune up the rc.d script a little:
1. Add a $FreeBSD Id
2. Remove the spurious FreeBSD KEYWORD
3. s#/etc/rc.subr#%%RC_SUBR%%#
4. s#/usr/local#%%PREFIX%%#
5. Move load_rc_config to after the method definition and move
the default _enable assignment after it.
6. The _stop method was a less efficient version of the default, so remove it |
20 Jul 2009 02:49:12
20050420_2 |
pgollucci  |
- Fix duplicate rc.d scripts
PR: ports/13883
Reported by: Alexander Hausner <alex@hugo.bmg.gv.at> |
17 Jul 2009 18:41:08
20050420_1 |
pgollucci  |
- USE_RC_SUBR != yes
PR: ports/136845
Approved by: maintainer
Submitted by: myself (pgollucci@) |
05 Jan 2009 21:36:39
20050420 |
pav  |
- Remove conditional checks for FreeBSD 5.x and older |
11 May 2006 22:49:56
20050420 |
edwin  |
Remove USE_REINPLACE from all categories starting with N |
22 Jan 2006 21:24:05
20050420 |
edwin  |
SHA256ify
Approved by: krion@ |
22 Apr 2005 18:53:12
20050420 |
jylefort  |
- Update to 20050420
- Cleanup the Makefile
PR: ports/80243
Submitted by: Alexander Hausner <alex@hugo.bmg.gv.at> (maintainer)
Approved by: adamw (mentor) |
16 Mar 2005 21:23:15
20050303 |
pav  |
ifdepd implements dependencies between network interfaces in a
reliable way. If any of the source interfaces fails, ifdepd sets all
destination interfaces to state down. If all source interfaces are active,
ifdepd sets all destination interfaces to state up.
For example, it can be used with carp(4) to provide failover functionality
on gateways/firewalls.
ifdepd is a simple replacement for ifstated and was written because of problems
with ifstated.
PR: ports/78819
Submitted by: Alexander Hausner <alex@hugo.bmg.gv.at> |