msl.network.cli_start module

Command line interface for the start command.

To see the help documentation, run the following command in a terminal:

msl-network start --help

Start the MSL Network Manager.

Examples:

# start the Network Manager using the default settings
msl-network start

# start the Network Manager on port 8326
msl-network start --port 8326

# require an authentication password for Clients and Services
# to be able to connect to the Network Manager
msl-network start --auth-password abc 123

# use a specific certificate and key for the secure TLS protocol
msl-network start --cert-file /path/to/cert.pem --key-file /path/to/key.pem

# require that a valid username and password are specified for
# Clients and Services to be able to connect to the Network Manager
msl-network start --auth-login

See Also:

msl-network certgen
msl-network keygen
msl-network hostname
msl-network user
msl.network.cli_start.add_parser_start(parser)[source]

Add the start command to the parser.

msl.network.cli_start.execute(args)[source]

Executes the start command.