JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Oracle Solaris Administration: Network Interfaces and Network Virtualization     Oracle Solaris 11 Express 11/10
search filter icon
search icon

Document Information

Preface

Part I Network Auto-Magic

1.  Introduction to NWAM

2.  NWAM Configuration and Administration (Overview)

3.  NWAM Profile Configuration (Tasks)

Creating Profiles

Creating Profiles in Command-Line Mode

Interactively Creating Profiles

Creating a User-Defined NCP

Creating NCUs for a User-Defined NCP

How to Interactively Create a User-Defined NCP

Creating a Location Profile

How to Interactively Create a Location Profile

Creating an ENM Profile

Creating WLANs

Removing Profiles

Setting and Changing Property Values of a Profile

Querying the System for Profile Information

Listing All of the Profiles on a System

Listing All Property Values for a Specific Profile

Obtaining Values of a Specific Property

How to Interactively Obtain a Single Property Value

Interactively Viewing and Changing Property Values by Using the walkprop Subcommand

Exporting and Restoring a Profile Configuration

Restoring a Profile

Managing the NWAM Service Through SMF

How to Switch From Autoconfiguration Mode to Traditional Networking Mode

How to Switch From Traditional Networking Mode to Autoconfiguration Mode

4.  NWAM Profile Administration (Tasks)

5.  About the NWAM Graphical User Interface

Part II Administering Single Interfaces

6.  Overview of the Networking Stack

7.  Datalink Configuration and Administration

8.  Configuring an IP Interface

9.  Configuring Wireless Interface Communications on Oracle Solaris

Part III Administering Interface Groups

10.  Administering Bridges

11.  Administering Link Aggregations

12.  Administering VLANs

13.  Introducing IPMP

14.  Administering IPMP

Part IV  Network Virtualization and Resource Management

15.  Introducing Network Virtualization and Resource Control (Overview)

16.  Planning for Network Virtualization and Resource Control

17.  Configuring Virtual Networks (Tasks)

18.  Using Link Protection in Virtualized Environments

19.  Managing Network Resources

20.  Monitoring Network Traffic and Resource Usage

Glossary

Index

Removing Profiles

You can remove all user-defined profiles or a specified user-defined profile from memory and persistent storage by using the nwamcfg destroy -a command.


Note - System-defined profiles, which include the Automatic NCP and the NoNet and Automatic Location profiles, cannot be removed.


The syntax for the destroy command is as follows:

nwamcfg destroy object-type [ class ] object-name

Alternately, you can use the following command:

nwamcfg destroy -a

Example 3-6 Removing a Profile in Command-Line Mode

To remove all of the user-defined profiles on a system, type the following command:

$ nwamcfg destroy -a

Because at least one profile must be active on the system at all times, and to avoid in-use errors when removing user-defined profiles, make sure that you enable the Automatic NCP before using the destroy -a command.

To remove a specific profile on the system, for example the User NCP, type the following command:

$ nwamcfg destroy ncp User

The destroy command can also be used to remove NCUs from an existing NCP. In the following example, an IP NCU with the name net1 is removed from the User NCP.

$ nwamcfg "select ncp User; destroy ncu ip net1"

To confirm that a profile has been removed, use the list subcommand, as shown here:

$ nwamcfg
nwamcfg> select ncp User
nwamcfg:ncp:User> list
NCUs:
        phys    net1
nwamcfg> exit
Nothing to commit
$

Example 3-7 Interactively Removing a Profile

In the following example, an IP NCU named net2 is removed.

$ nwamcfg list
NCPs:
        Automatic
        User
Locations:
        Automatic
        NoNet
        Legacy
        test
        foo
$ nwamcfg
nwamcfg> select ncp User
nwamcfg:ncp:User> list
NCUs:
        phys    net2
        ip      net2
nwamcfg:ncp:User> destroy ncu ip net2
Destroyed ncu 'net2'
nwamcfg:ncp:User> list
NCUs:
        phys    net2
nwamcfg:ncp:User> end
nwamcfg> exit
Nothing to commit