ansible.builtin.panos_import (v2.4.0.0-1) — module

import file on PAN-OS devices

| "added in version" 2.3 of ansible.builtin"

Authors: Luigi Mori (@jtschichold), Ivan Bojer (@ivanbojer)

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.4.0.0.post1

Description

Import file on PAN-OS device


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# import software image PanOS_vm-6.1.1 on 192.168.1.1
- name: import software image into PAN-OS
  panos_import:
    ip_address: 192.168.1.1
    username: admin
    password: admin
    file: /tmp/PanOS_vm-6.1.1
    category: software

Inputs

    
url:
    default: None
    description:
    - URL of the file that will be imported to device.
    required: false

file:
    default: None
    description:
    - Location of the file to import into device.
    required: false

category:
    default: software
    description:
    - Category of file uploaded. The default is software.
    required: false

password:
    description:
    - Password for device authentication.
    required: true

username:
    default: admin
    description:
    - Username for device authentication.
    required: false

ip_address:
    description:
    - IP address (or hostname) of PAN-OS device.
    required: true