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

相关文章:

  • 2021-12-19
  • 2021-07-14
  • 2021-10-18
  • 2021-09-13
  • 2021-10-20
  • 2021-11-20
  • 2022-03-09
  • 2021-11-14
猜你喜欢
  • 2021-07-02
  • 2021-06-12
  • 2022-03-05
  • 2021-07-19
  • 2021-05-26
  • 2021-06-09
  • 2021-08-21
相关资源
相似解决方案