salt.modules.nilrt_ip
The networking module for NI Linux Real-Time distro
-
Apply global network configuration.
CLI Example:
salt '*' ip.apply_network_settings
salt.modules.nilrt_ip.apply_network_settings(**settings)
-
Build an interface script for a network interface.
CLI Example:
salt '*' ip.build_interface eth0 eth <settings>
salt.modules.nilrt_ip.build_interface(iface, iface_type, enabled, **settings)
-
Build the global network script.
CLI Example:
salt '*' ip.build_network_settings <settings>
salt.modules.nilrt_ip.build_network_settings(**settings)
-
Disable the specified interface
Change adapter mode to Disabled. If previous adapter mode was EtherCAT, the target will need reboot.
- Parameters
-
interface (str) -- interface label
- Returns
-
True if the service was disabled, otherwise an exception will be thrown.
- Return type
CLI Example:
salt '*' ip.disable interface-label
salt.modules.nilrt_ip.disable(interface)
-
Disable the specified interface
Change adapter mode to Disabled. If previous adapter mode was EtherCAT, the target will need reboot.
- Parameters
-
interface (str) -- interface label
- Returns
-
True if the service was disabled, otherwise an exception will be thrown.
- Return type
CLI Example:
salt '*' ip.down interface-label
salt.modules.nilrt_ip.down(interface, iface_type=None)
-
Enable the specified interface
Change adapter mode to TCP/IP. If previous adapter mode was EtherCAT, the target will need reboot.
- Parameters
-
interface (str) -- interface label
- Returns
-
True if the service was enabled, otherwise an exception will be thrown.
- Return type
CLI Example:
salt '*' ip.enable interface-label
salt.modules.nilrt_ip.enable(interface)
-
Returns details about given interface.
CLI Example:
salt '*' ip.get_interface eth0
salt.modules.nilrt_ip.get_interface(iface)
-
Get details about all the interfaces on the minion
- Returns
-
information about all interfaces omitting loopback
- Return type
-
dictionary
CLI Example:
salt '*' ip.get_interfaces_details
salt.modules.nilrt_ip.get_interfaces_details()
-
Return the contents of the global network script.
CLI Example:
salt '*' ip.get_network_settings
salt.modules.nilrt_ip.get_network_settings()
-
Configure specified adapter to use DHCP with linklocal fallback
Change adapter mode to TCP/IP. If previous adapter mode was EtherCAT, the target will need reboot.
- Parameters
-
interface (str) -- interface label
- Returns
-
True if the settings were applied, otherwise an exception will be thrown.
- Return type
CLI Example:
salt '*' ip.set_dhcp_linklocal_all interface-label
salt.modules.nilrt_ip.set_dhcp_linklocal_all(interface)
-
Configure specified adapter to use DHCP only
Change adapter mode to TCP/IP. If previous adapter mode was EtherCAT, the target will need reboot.
- Parameters
-
interface (str) -- interface label
- Returns
-
True if the settings were applied, otherwise an exception will be thrown.
- Return type
CLI Example:
salt '*' ip.dhcp_only_all interface-label
salt.modules.nilrt_ip.set_dhcp_only_all(interface)
-
Configure specified adapter to use EtherCAT adapter mode. If successful, the target will need reboot if it doesn't already use EtherCAT adapter mode, otherwise will return true.
- Parameters
-
interface -- interface label
master_id -- EtherCAT Master ID
- Returns
-
True if the settings were applied, otherwise an exception will be thrown.
CLI Example:
salt '*' ip.set_ethercat interface-label master-id
salt.modules.nilrt_ip.set_ethercat(interface, master_id)
-
Configure specified adapter to use linklocal only
Change adapter mode to TCP/IP. If previous adapter mode was EtherCAT, the target will need reboot.
- Parameters
-
interface (str) -- interface label
- Returns
-
True if the settings were applied, otherwise an exception will be thrown.
- Return type
CLI Example:
salt '*' ip.linklocal_only_all interface-label
salt.modules.nilrt_ip.set_linklocal_only_all(interface)
-
Configure specified adapter to use ipv4 manual settings
Change adapter mode to TCP/IP. If previous adapter mode was EtherCAT, the target will need reboot.
- Parameters
- Returns
-
True if the settings were applied, otherwise an exception will be thrown.
- Return type
CLI Example:
salt '*' ip.set_static_all interface-label address netmask gateway nameservers
salt.modules.nilrt_ip.set_static_all(interface, address, netmask, gateway, nameservers=None)
-
Enable the specified interface
Change adapter mode to TCP/IP. If previous adapter mode was EtherCAT, the target will need reboot.
- Parameters
-
interface (str) -- interface label
- Returns
-
True if the service was enabled, otherwise an exception will be thrown.
- Return type
CLI Example:
salt '*' ip.up interface-label
salt.modules.nilrt_ip.up(interface, iface_type=None)
© 2021 SaltStack.
Licensed under the Apache License, Version 2.0.
https://docs.saltproject.io/en/latest/ref/modules/all/salt.modules.nilrt_ip.html