Support Forum
The Forums are a place to find answers on a range of Fortinet products from peers and product experts.
longhidaniel
New Contributor

Ansible FortiOS, how to remove interface from virtual hardware switch?

Hello,

 

I have a 40F.

Default config has a virtual hardware switch called "lan" whose member interfaces are: "lan1", "lan2" and "lan3".

I would like to remove those member interfaces from the "lan" switch using Ansible.

 

Do you know how to do that ?

 

https://docs.ansible.com/ansible/latest/collections/fortinet/fortios/fortios_system_virtual_switch_m...

 

I tried the tasks bellow, leaving the port empty, but no success.
If I specify just one port, like lan1, it removes the others. I need to remove them all.

 

task1
- name: Remove member interfaces from "lan" virtual hardware switch
  fortinet.fortios.fortios_system_virtual_switch:
    vdom: "{{ vdom }}"
    state: "present"
    system_virtual_switch:
        name: "lan"
        port:

 

task2
- name: Remove member interfaces from "lan" virtual hardware switch
  fortinet.fortios.fortios_system_virtual_switch:
    vdom: "{{ vdom }}"
    state: "present"
    system_virtual_switch:
        name: "lan"
        port:
            -

1 Solution
longhidaniel
New Contributor

It is not possible to have a virtual hardware switch without at least one member interface.

Tried it on the GUI, so I believe the same applies to Ansible or CLI.

 

fortigate_hardware_switch.png

View solution in original post

2 REPLIES 2
Hatibi
Staff
Staff

Since you want to remove all of the entries, have you tried by adding a wildard in the port parameter?

 

Example:

port: "lan*"

longhidaniel
New Contributor

It is not possible to have a virtual hardware switch without at least one member interface.

Tried it on the GUI, so I believe the same applies to Ansible or CLI.

 

fortigate_hardware_switch.png

Announcements

Select Forum Responses to become Knowledge Articles!

Select the “Nominate to Knowledge Base” button to recommend a forum post to become a knowledge article.

Labels
Top Kudoed Authors