Opened 16 years ago

Closed 16 years ago

#140 closed enhancement (fixed)

PortCheckInterface should take a list as input

Reported by: rainer Owned by: rainer
Priority: major Milestone: 2.5.3
Component: main Version:
Keywords: Cc:

Description

Need to allow a list as input to PortCheckInterface to enable reading in all valid interfaces by expanding a shell macro. E.g. like:

# Linux
PortCheckInterface = $( /sbin/ifconfig | grep 'inet addr:' | sed 's/.*r:\([0-9.]*\).*/\1 /' | tr -d '\n'; echo )
# FreeBSD, Solaris, OpenBSD
PortCheckInterface = $( /sbin/ifconfig -a| grep 'inet ' | sed 's/.*t \([0-9.]*\) .*/\1 /' | tr -d '\n';echo )

Change History (1)

comment:1 by rainer, 16 years ago

Resolution: fixed
Status: newclosed

Fixed in changeset [212].

Note: See TracTickets for help on using tickets.