bind9/bin/tests/system/ifconfig.bat
Ondřej Surý 58bd26b6cf Update the copyright information in all files in the repository
This commit converts the license handling to adhere to the REUSE
specification.  It specifically:

1. Adds used licnses to LICENSES/ directory

2. Add "isc" template for adding the copyright boilerplate

3. Changes all source files to include copyright and SPDX license
   header, this includes all the C sources, documentation, zone files,
   configuration files.  There are notes in the doc/dev/copyrights file
   on how to add correct headers to the new files.

4. Handle the rest that can't be modified via .reuse/dep5 file.  The
   binary (or otherwise unmodifiable) files could have license places
   next to them in <foo>.license file, but this would lead to cluttered
   repository and most of the files handled in the .reuse/dep5 file are
   system test files.
2022-01-11 09:05:02 +01:00

49 lines
1.7 KiB
Batchfile

echo off
rem
rem Copyright (C) Internet Systems Consortium, Inc. ("ISC")
rem
rem SPDX-License-Identifier: MPL-2.0
rem
rem This Source Code Form is subject to the terms of the Mozilla Public
rem License, v. 2.0. If a copy of the MPL was not distributed with this
rem file, you can obtain one at https://mozilla.org/MPL/2.0/.
rem
rem See the COPYRIGHT file distributed with this work for additional
rem information regarding copyright ownership.
rem ifconfig.bat
rem Set up interface aliases for bind9 system tests.
rem
rem IPv4: 10.53.0.{1..10} RFC 1918
rem 10.53.1.{1..2}
rem 10.53.2.{1..2}
rem IPv6: fd92:7065:b8e:ffff::{1..10} ULA
rem fd92:7065:b8e:99ff::{1..2}
rem fd92:7065:b8e:ff::{1..2}
rem
echo Please adapt this script to your system
rem remove the following line when the script is ready
exit /b 1
rem for IPv4 adding these static addresses to a physical interface
rem will switch it from DHCP to static flushing DHCP setup.
rem So it is highly recommended to install the loopback pseudo-interface
rem and add IPv4 addresses to it.
rem for IPv6 your interface can have a different name, e.g.,
rem "Local Area Connection". Please update this script and remove the
rem exit line
echo on
FOR %%I IN (1,2,3,4,5,6,7,8,9,10) DO (
netsh interface ipv4 add address name=Loopback 10.53.0.%%I 255.255.255.0
netsh interface ipv6 add address interface=Loopback fd92:7065:b8e:ffff::%%I/64
)
FOR %%I IN (1,2) DO (
netsh interface ipv4 add address name=Loopback 10.53.1.%%I 255.255.255.0
netsh interface ipv4 add address name=Loopback 10.53.2.%%I 255.255.255.0
netsh interface ipv6 add address interface=Loopback fd92:7065:b8e:99ff::%%I/64
netsh interface ipv6 add address interface=Loopback fd92:7065:b8e:ff::%%I/64
)