#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# service does all configuration that can be done before name services are
# started, bar configuring IP routing (this is carried out by the
# svc:/network/routing-setup service). The final part, run by the
# name services. This includes a final re-configuration of the
# interfaces.
#
#
# In a shared-IP zone we need this service to be up, but all of the work
# it tries to do is irrelevant (and will actually lead to the service
# failing if we try to do it), so just bail out.
# In the global zone and exclusive-IP zones we proceed.
#
smf_configure_ip || exit $SMF_EXIT_OK
# Configure IPv6 Default Address Selection.
fi
#
# If explicit IPMP groups are being used, in.mpathd will already be started.
# However, if TRACK_INTERFACES_ONLY_WITH_GROUPS=no and no explicit IPMP
# groups have been configured, then it still needs to be started. So, fire
# it up in "adopt" mode; if there are no interfaces it needs to manage, it
# will automatically exit.
#
#
# Set the RFC 1948 entropy, regardless of if I'm using it or not. If present,
# use the encrypted root password as a source of entropy. Otherwise,
# just use the pre-set (and hopefully difficult to guess) entropy that
# tcp used when it loaded.
#
unset encr
# Set the SDP system Policy. This needs to happen after basic
# networking is up but before any networking services that might
# want to use SDP are enabled
if [ "$sysenable" = "1" ]; then
fi
fi
#
# Set TCP ISS generation. By default the ISS generation is
# time + random()-delta. This might not be strong enough for some users.
# If not set, use TCP's internal default setting.
#
if [ $TCP_STRONG_ISS ]; then
fi
# Clear exit status.
exit $SMF_EXIT_OK