Saltstack module ip 详解

ip.get_bond

Return the content of a bond script

CLI Example:

    salt '*' ip.get_bond bond0

ip.get_routes

Return the contents of the interface routes script.

CLI Example:

    salt '*' ip.get_routes eth0

ip.build_interface

Build an interface script for a network interface.

CLI Example:

    salt '*' ip.build_interface eth0 eth <settings>

ip.down

Shutdown a network interface

CLI Example:

    salt '*' ip.down eth0

ip.build_bond

Create a bond script in /etc/modprobe.d with the passed settings
and load the bonding kernel module.

CLI Example:

    salt '*' ip.build_bond bond0 mode=balance-alb

ip.build_routes

Build a route script for a network interface.

CLI Example:

    salt '*' ip.build_routes eth0 <settings>

ip.get_interface

Return the contents of an interface script

CLI Example:

    salt '*' ip.get_interface eth0

ip.get_network_settings

Return the contents of the global network script.

CLI Example:

    salt '*' ip.get_network_settings

ip.build_network_settings

Build the global network script.

CLI Example:

    salt '*' ip.build_network_settings <settings>

ip.up

Start up a network interface

CLI Example:

    salt '*' ip.up eth0

ip.apply_network_settings

Apply global network configuration.

CLI Example:

    salt '*' ip.apply_network_settings
posted @ 2020-03-28 21:26  random_lee  阅读(232)  评论(0编辑  收藏  举报