Network Configuration Demos
Overview
Network Demos in Playbooks are used to showcase how to configure network settings on AIX systems using Ansible. These demos include tasks such as setting up TCP/IP
Usage Example
The playbook playbooks/demo_mktcpip.yml
is an example that demonstrates setting the required values for starting TCP/IP
ibm.power_aix.mktcpip
The playbook playbooks/demo_mktcpip.yml
demonstrates setting the required values for starting TCP/IP
ibm.power_aix.mktcpip
TCP/IP
---
- name: MKTCPIP on AIX
hosts: "{{ host_name }}"
gather_facts: false
vars:
host_name: all
address_v: 192.9.200.4
nameserver_v: 192.9.200.1
interface_v: en0
domain_v: austin.century.com
tasks:
- name: Set the required values for starting TCP/IP
ibm.power_aix.mktcpip:
hostname: fred.austin.century.com
address: "{{ address_v }}"
interface: "{{ interface_v }}"
nameserver: "{{ nameserver_v }}"
domain: "{{ domain_v }}"
start_daemons: true
This is an auto-generated document by Swimm 🌊 and has not yet been verified by a human