2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

2340. [port] openbsd: interface configuration. [RT #17700]

This commit is contained in:
Mark Andrews
2008-03-03 01:20:03 +00:00
parent aa02826aac
commit d9936b218d
2 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,5 @@
2340. [port] openbsd: interface configuration. [RT #17700]
2339. [port] tru64: support for libbind. [RT #17589] 2339. [port] tru64: support for libbind. [RT #17589]
2338. [bug] check_ds() could be called with a non DS rdataset. 2338. [bug] check_ds() could be called with a non DS rdataset.

View File

@@ -15,7 +15,7 @@
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE. # PERFORMANCE OF THIS SOFTWARE.
# $Id: ifconfig.sh,v 1.51 2007/06/19 23:47:00 tbox Exp $ # $Id: ifconfig.sh,v 1.52 2008/03/03 01:20:03 marka Exp $
# #
# Set up interface aliases for bind9 system tests. # Set up interface aliases for bind9 system tests.
@@ -85,6 +85,9 @@ case "$1" in
*-unknown-netbsd*) *-unknown-netbsd*)
ifconfig lo0 10.53.0.$ns alias netmask 255.255.255.0 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].*) *-*-bsdi[3-5].*)
ifconfig lo0 add 10.53.0.$ns netmask 255.255.255.0 ifconfig lo0 add 10.53.0.$ns netmask 255.255.255.0
;; ;;
@@ -145,6 +148,9 @@ case "$1" in
*-unknown-netbsd*) *-unknown-netbsd*)
ifconfig lo0 10.53.0.$ns delete ifconfig lo0 10.53.0.$ns delete
;; ;;
*-unknown-openbsd*)
ifconfig lo0 10.53.0.$ns delete
;;
*-*-bsdi[3-5].*) *-*-bsdi[3-5].*)
ifconfig lo0 remove 10.53.0.$ns ifconfig lo0 remove 10.53.0.$ns
;; ;;