• AnsibleFest
  • Products
  • Community
  • Webinars & Training
  • Blog
Ansible Logo
Documentation
Ansible
2.9_ja

インストール、アップグレード、および設定

  • インストールガイド
  • Ansible 移植ガイド

Ansible の使用

  • Ansible クイックスタートガイド
  • Playbook の使用
  • 権限昇格の理解: become
  • Ansible Vault
  • モジュールの使用
  • プラグインの使用
  • Windows ガイド

Ansible への貢献

  • Ansible コミュニティーガイド

Ansible の拡張

  • 開発者ガイド

Ansible の一般的なシナリオ

  • パブリッククラウドガイド
  • ネットワークテクノロジーガイド
  • 仮想化およびコンテナー化ガイド

Ansible Galaxy

  • Galaxy ユーザーガイド
  • Galaxy 開発者ガイド

参照 & 付録

  • Module Index
  • Playbook Keywords
  • 戻り値
  • Ansible Configuration Settings
  • Ansible の動作の制御: 優先順位のルール
  • YAML 構文
  • Python 3 サポート
  • インタープリターの検出
  • リリースおよびメンテナンス
  • ストラテジーのテスト
  • Sanity Tests
  • よくある質問 (FAQ)
  • 用語集
  • Ansible Reference: Module Utilities
  • 特別な変数
  • Red Hat Ansible Tower
  • Ansible 出力のロギング

ロードマップ

  • Ansible ロードマップ




Ansible
  • Docs »
  • onyx_mlag_ipl – Manage IPL (inter-peer link) on Mellanox ONYX network devices
  • Edit on GitHub

onyx_mlag_ipl – Manage IPL (inter-peer link) on Mellanox ONYX network devices¶

New in version 2.5.

  • Synopsis
  • Parameters
  • Notes
  • Examples
  • Return Values
  • Status

Synopsis¶

  • This module provides declarative management of IPL (inter-peer link) management on Mellanox ONYX network devices.

Parameters¶

Parameter Choices/Defaults Comments
name
- / required
Name of the interface (port-channel) IPL should be configured on.
peer_address
-
IPL peer IP address.
state
-
    Choices:
  • present ←
  • absent
IPL state.
vlan_interface
-
Name of the IPL vlan interface.

Notes¶

Note

  • Tested on ONYX 3.6.4000

Examples¶

- name: run configure ipl
  onyx_mlag_ipl:
    name: Po1
    vlan_interface: Vlan 322
    state: present
    peer_address: 192.168.7.1

- name: run remove ipl
  onyx_mlag_ipl:
    name: Po1
    state: absent

Return Values¶

Common return values are documented here, the following are the fields unique to this module:

Key Returned Description
commands
list
always
The list of configuration mode commands to send to the device.

Sample:
['interface port-channel 1 ipl 1', 'interface vlan 1024 ipl 1 peer-address 10.10.10.10']


Status¶

  • This module is not guaranteed to have a backwards compatible interface. [preview]
  • This module is maintained by the Ansible Community. [community]

Authors¶

  • Samer Deeb (@samerd)

Hint

If you notice any issues in this documentation, you can edit this document to improve it.


© Copyright 2019 Red Hat, Inc. Last updated on Sep 22, 2020.