Coder Social home page Coder Social logo

Comments (2)

JieX19 avatar JieX19 commented on July 21, 2024

Hi @RichardBotham,

Can you please check the runtime module is the one in galaxy collection not the old ansible module? I've noticed hosts, username, password, ssl_verify, https parameters used in the playbook, they'are actually causing the issue you mentioned above.

We use ansible_httpapi_use_ssl [yes/no] and ansible_httpapi_validate_certs [yes/no] instead in collection. And please note if you're using hosts, username, password in the playbook, then the old ansible modules will be called not the ones in collection.

FYI, here's a workable playbook.

- hosts: fortigateslab
  connection: httpapi
  collections:
    - fortinet.fortios
  vars:
    ansible_httpapi_use_ssl: yes
    ansible_httpapi_validate_certs: no
    ansible_httpapi_port: 443
    vdom: "root"
  tasks:
  - name: Configure DNS.
    fortios_system_dns:
      vdom:  "{{ vdom }}"
      system_dns:
        source_ip: "192.168.127.110"
        domain:
          - 
            domain: "bbc.co.uk"

You can config the hosts file under /etc/ansible/hosts and no need to use them in the playbook.

[fortigateslab]
fortigate01 ansible_host=192.168.190.100 ansible_user="admin" ansible_password="password"

[fortigateslab:vars]
ansible_network_os=fortinet.fortios.fortios

from ansible-galaxy-fortios-collection.

chillancezen avatar chillancezen commented on July 21, 2024

@RichardBotham hi Rich,

httpapi is preferred as Jie suggested.

but first make it clear which fortios version it is and install correct fortios collection.
Let's continue to use https://fndn.fortinet.net/index.php?/forums/topic/2269-ansible-and-fortios_system_dns/ to track this issue.

I mark this closed.

thanks,
Link

from ansible-galaxy-fortios-collection.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.