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 )
Note:
See TracTickets
for help on using tickets.
Fixed in changeset [212].