mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-24 15:47:18 -04:00
2340. [port] openbsd: interface configuration. [RT #17700]
This commit is contained in:
parent
07e5ce1185
commit
2b251dd453
2 changed files with 9 additions and 1 deletions
2
CHANGES
2
CHANGES
|
|
@ -1,3 +1,5 @@
|
|||
2340. [port] openbsd: interface configuration. [RT #17700]
|
||||
|
||||
2339. [port] tru64: support for libbind. [RT #17589]
|
||||
|
||||
2338. [bug] check_ds() could be called with a non DS rdataset.
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
# PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# $Id: ifconfig.sh,v 1.46.18.3 2004/10/05 03:18:21 marka Exp $
|
||||
# $Id: ifconfig.sh,v 1.46.18.4 2008/03/03 01:22:56 marka Exp $
|
||||
|
||||
#
|
||||
# Set up interface aliases for bind9 system tests.
|
||||
|
|
@ -85,6 +85,9 @@ case "$1" in
|
|||
*-unknown-netbsd*)
|
||||
ifconfig lo0 10.53.0.$ns alias netmask 255.255.255.0
|
||||
;;
|
||||
*-unknown-openbsd*)
|
||||
ifconfig lo0 10.53.0.$ns alias netmask 255.255.255.0
|
||||
;;
|
||||
*-*-bsdi[3-5].*)
|
||||
ifconfig lo0 add 10.53.0.$ns netmask 255.255.255.0
|
||||
;;
|
||||
|
|
@ -145,6 +148,9 @@ case "$1" in
|
|||
*-unknown-netbsd*)
|
||||
ifconfig lo0 10.53.0.$ns delete
|
||||
;;
|
||||
*-unknown-openbsd*)
|
||||
ifconfig lo0 10.53.0.$ns delete
|
||||
;;
|
||||
*-*-bsdi[3-5].*)
|
||||
ifconfig lo0 remove 10.53.0.$ns
|
||||
;;
|
||||
|
|
|
|||
Loading…
Reference in a new issue