2010-08-25 00:51:51 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
#
|
2018-02-23 03:53:12 -05:00
|
|
|
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
2012-06-28 21:39:47 -04:00
|
|
|
#
|
2021-06-03 02:37:05 -04:00
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
#
|
2016-06-27 00:56:38 -04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
2020-09-14 19:20:40 -04:00
|
|
|
# file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
2018-02-23 03:53:12 -05:00
|
|
|
#
|
|
|
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
|
|
|
# information regarding copyright ownership.
|
2010-08-25 00:51:51 -04:00
|
|
|
|
2013-06-11 21:31:30 -04:00
|
|
|
for ns in 1 2 3 4 5 6 7 8
|
2010-08-25 00:51:51 -04:00
|
|
|
do
|
|
|
|
|
/sbin/ifconfig lo0 10.53.0.$ns alias
|
|
|
|
|
/sbin/ifconfig lo0 inet6 fd92:7065:b8e:ffff::$ns alias
|
|
|
|
|
done
|