Coder Social home page Coder Social logo

Comments (4)

luchoArg33 avatar luchoArg33 commented on July 21, 2024

Hi,
I've found the same problem but I didn't know that changing a PUT with a POST would solve the issue. I can't use the module incrementally as everytime I try to add a new neighbor previous neighbors have to be specified in the playbook otherwise the play will erase old configuration.
Below you'll find a packet capture that I've made in my lab. Hope that helps to see the problem... =)

Ansible-bgp-capture,2 peers 2.zip

Cheers,
Luis

from ansible-galaxy-fortios-collection.

chillancezen avatar chillancezen commented on July 21, 2024

hello @toy4two @luchoArg33 ,
the issue that you can't use remote-as in current galaxy collection has been fixed #7, but it will be in next release very soon. You are still able to use the new galaxy collection binary here:

$wget https://github.com/fortinet-ansible-dev/ansible-galaxy-fortios-collection/releases/download/release_2020_05/fortinet-fortios-1.0.11.tar.gz
$ansible-galaxy collection install -f fortinet-fortios-1.0.11.tar.gz

and then configure more than one neighbors in your playbook.(note the api is not designed to update the neighbors incrementally, you have to input all your neighbors every time you have to update the bgp neighbors )

here is an example:

$cat hosts
[fortigates]
fortigate01 ansible_host=192.168.190.130 ansible_user="admin" ansible_password="password"

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

$cat feature_09.yml
- hosts: fortigate01
  connection: httpapi
  collections:
  - fortinet.fortios
  vars:
   vdom: "root"
   ansible_httpapi_use_ssl: yes
   ansible_httpapi_validate_certs: no
   ansible_httpapi_port: 443
  tasks:
   - name: Configure router bgp.
     fortios_router_bgp:
        vdom:  "{{ vdom }}"
        router_bgp:
            neighbor:
                - ip: '192.168.1.2'
                  remote_as: '1112'
                - ip: '192.168.1.1'
                  remote_as: '1111'
$ansible-playbook -i hosts  feature_09.yml

once new FortiOS galaxy is released, you don't have to download the binary and install like that way, I will keep the issue open util release is ready.

thanks again for the issue.
Link

from ansible-galaxy-fortios-collection.

chillancezen avatar chillancezen commented on July 21, 2024

update: simply re-install your collection:

$ ansible-galaxy collection install fortinet.fortios:1.0.9 -f

we have released a new galaxy collection that contains the fix.
and please let me know if there is anything I could do to help.

thanks,
Link.

from ansible-galaxy-fortios-collection.

chillancezen avatar chillancezen commented on July 21, 2024

hi all, please follow the steps above.

Now I resolved this issue to be fixed. please reopen if there is anything I can do to help.

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.