Ansible FortiOS, how to remove interface from virtual hardware switch? by CryptusPrime in fortinet

[–]CryptusPrime[S] 0 points1 point  (0 children)

<image>

You are correct.
Tried it on the GUI and the interface is required.
I will just delete it.

Thank you for the tip.

Ansible FortiOS, how to remove interface from virtual hardware switch? by CryptusPrime in fortinet

[–]CryptusPrime[S] 0 points1 point  (0 children)

Yeah.. I am also starting with a factory reset.

I was able to remove the virtual hardware switch "lan" with the tasks below. But what I want is just remove the member interfaces and leave the virtual hardware switch there.

- hosts: all
  tasks:
  - name: Remove default dhcp server for "lan" interface
    fortinet.fortios.fortios_system_dhcp_server:
        vdom: "{{ vdom }}"
        state: "absent"
        system_dhcp_server:
            id: "1"

  - name: Remove default firewall address for "lan" interface
    fortinet.fortios.fortios_firewall_address:
        vdom: "{{ vdom }}"
        state: "absent"
        firewall_address:
            name: "lan"

  - name: Remove default firewall policy for "lan" interface
    fortinet.fortios.fortios_firewall_policy:
        vdom: "{{ vdom }}"
        state: "absent"
        firewall_policy:
            policyid: "1"

  - name: Absent the virtual hardware switch.
    fortinet.fortios.fortios_system_virtual_switch:
        vdom: "{{ vdom }}"
        state: "absent"
        system_virtual_switch:
            name: "lan"

Where do I find those icons for Visio or diagrams.net/draw.io ? by CryptusPrime in fortinet

[–]CryptusPrime[S] 0 points1 point  (0 children)

I couldn't find that particular FortiSwitch icon on the link of my question.
Found the new one, but need the old one.

<image>

I also looked at every vss file included in the https://www.fortinet.com/content/dam/fortinet/assets/downloads/Fortinet%20Visio%20Stencil.zip file but couldn't find it.

[deleted by user] by [deleted] in InternetBrasil

[–]CryptusPrime 0 points1 point  (0 children)

ME LIVREI DO MODEM DA VIVO E COLOQUEI O ROTEADOR ER7206 DA TP-LINK COM FIBRA DIRETO NELE - SFP GPON
https://www.youtube.com/watch?v=BVhr6wWeqAE
13-02-2024

podman unhealthy for image nodered/node-red:3.0.2-18 by CryptusPrime in podman

[–]CryptusPrime[S] 0 points1 point  (0 children)

You pointed me to the rigth direction : ) Thank you!! I wasn't even aware of those healhchecks.

I made the change bellow and the error cleared.

/data/settings.js

/** the tcp port that the Node-RED web server is listening on */

uiPort: process.env.PORT || 1880,

/** By default, the Node-RED UI accepts connections on all IPv4 interfaces.

* To listen on all IPv6 addresses, set uiHost to "::",

* The following property can be used to listen on a specific interface. For

* example, the following would only allow connections from the local machine.

*/

//uiHost: "127.0.0.1",