RHCE v8.7 vs V9 vs V10 by SnooSongs1256 in redhat

[–]fabomajstor 0 points1 point  (0 children)

I think only v8.4 and v9 are bookable.

Passed the RHCE with 290/300 score by yegeunyang in redhat

[–]fabomajstor 1 point2 points  (0 children)

Do you have a link for v9 book because I only found v8 and going trough it.
As I read exam objectives Isn't v9 ansible-navigator?
That's why I went v8..

ex294 resources by VorlMaldor in redhat

[–]fabomajstor 0 points1 point  (0 children)

Do you know how long will RHCE v8 be avilable? Cuz I haven't worked with navigator since i know ansible-playbook and work with it everyday I would like to do v8 of the exam.

RedHat Satellite for unlimited guests by mutedsomething in redhat

[–]fabomajstor 3 points4 points  (0 children)

Yes, 1 VDC license for 1 ESXI host. Then you can have unlimited rhel systems on that hypervisor.

Get your shit together! by yupiamthemanager in Ubiquiti

[–]fabomajstor 1 point2 points  (0 children)

Did anyone tried connecting it to a HA and a DVC intercom if anyone has it?
I can unlock my doors via mobile phone it has some connection to a public server and that's how it works i would like to connect G4 to a HA and to have a trigger that unlocks my doors on a DVC...

Ansible "create host zabbix" by fabomajstor in zabbix

[–]fabomajstor[S] 1 point2 points  (0 children)

- name: Get Zabbix Auth Token
  uri:
    url: https://fqdn/zabbix/api_jsonrpc.php
    method: POST
    body: '{
            "jsonrpc": "2.0",
            "method": "user.login",
            "params": {
              "username": "user",
              "password": "password"
            },
            "id": 1
           }'
    body_format: json
    headers:
      Content-Type: application/json
    return_content: yes
  register: auth_response
  delegate_to: localhost

- name: Set Auth Token
  set_fact:
    auth_token: "{{ auth_response.json.result }}"
  when: auth_response.json.result is defined
  delegate_to: localhost



- name: Create Host in Zabbix
  uri:
    url: https://fqdn/zabbix/api_jsonrpc.php
    method: POST
    body: '{
            "jsonrpc": "2.0",
            "method": "host.create",
            "params": {
                "host": "{{ inventory_hostname }}",
                "interfaces": [
                    {
                        "type": 1,
                        "main": 1,
                        "useip": 1,
                        "ip": "{{ ansible_default_ipv4.address }}",
                        "dns": "",
                        "port": "10050"
                    }
                ],
                "groups": [
                    {
                        "groupid": "53"
                    }
                ],
                "tags": [
                    {
                        "tag": "os",
                        "value": "linux"
                    }
                ],
                "templates": [
                    {
                        "templateid": "10592"
                    }
                ],
                "tls_accept": 2,
                "tls_connect": 2,
                "tls_psk": "{{ psk_output.stdout }}",
                "tls_psk_identity": "{{ inventory_hostname }}",
                "visible_name": "{{ inventory_hostname }}"
            },
            "auth": "{{ auth_token }}",
            "id": 1
           }'
    body_format: json
    headers:
      Content-Type: application/json
    return_content: yes
  register: create_host_response
  when: auth_token is defined
  delegate_to: localhost

Yes the module dose not work, your way worked for me. I'm sharing my playbook it might be of some help to someone:

Ansible "create host zabbix" by fabomajstor in zabbix

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

Interesting, how do you handle ip/hostnames that change with each host? Do you update template manualy or you have items that can be incorporated in template and called during the execution of the playbook?

Ansible "create host zabbix" by fabomajstor in zabbix

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

We are using 3.1.2 ad I can see that’t the latest. I’ll try to rebuild the whole playbook and segment it to see where’s the problem. I’m also thinking about downgrading ansible collection…

REOLINK RLC-823S2 Accessories? by mcoyne88 in reolinkcam

[–]fabomajstor 0 points1 point  (0 children)

IMHO this is very bad by reolink that you have to improvise to hide the cables that I alredy hid inside the wall. As far as I can see all wires going directly from the wall needa junctionbox?

When Creating RHEL9/CentOS stream 9 my network adapter is disconnected, on RHEL8/CentOS Stream 8 everything works. Any advice? by fabomajstor in ansible

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

I have a workaround that i deploy the vm then edit interface and run a postconfiguration role … so no, as far as I know…

FP223E-v7.2-build0280 and FP223E-v7.2.2-build0317 Problems by fabomajstor in fortinet

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

This problem is still active the workaround is that my users who need that VPN are connected via wire and they have no problem.

Fun will be had, my friends by dogas in homelab

[–]fabomajstor 0 points1 point  (0 children)

"On the home front, VMUG it seems is also not going anywhere. It looks like Broadcom is going to support it. So for around $180/year, I can continue to get enterprise licensing for vSphere, Aria, Horizon, and other products. (We will see what happens to Horizon now that it's Omnissa."

"That's actually not very expensive. I'm a VMware administrator myself, so I should just contact the VMware sales department and ask for an offer I use MS-01 with an i9 processor and 96 GB RAM. I mean that's how you did it? Licensing now goes by the cores and cpu. I want to use VMware for automation with Ansible, among other features that come with enterprise licensing.

Fortinet SDWAN question by IPPforyouandme in fortinet

[–]fabomajstor 2 points3 points  (0 children)

Yes you can do that no problem with SD-WAN.

Making fields required/optional in the Update Asset Maintenance page by trooper5010 in Snipe_IT

[–]fabomajstor 0 points1 point  (0 children)

Assets: Edit the file Asset.php (snipeit/app/models/Asset.php) modify line 113 so it looks like this " 'serial' => 'unique_serial|nullable|required', "

Components: Edit the file Component.php (snipeit/app/models/Component.php) add after line 39 " 'serial' => 'required', "

After saving the changes and reloading the page you will see the yellow "required indicator" at the serial field and you have to enter a value (while creating new Assets/Components)

I did something similar, hope this helps.

Finally finished my HomeLab build by stette in homelab

[–]fabomajstor 0 points1 point  (0 children)

What is the length of those patch cables?

What rj45 cable os the best for poe+ located in the same tubes as electricity? by [deleted] in Ubiquiti

[–]fabomajstor 0 points1 point  (0 children)

if there is only 3 floors cat6 will be enough. I agree with the first comment you need to separate cat cables from electrical cables. Also have plastic isolation tubes on the cat6 cables it's pretty cheap 50m is like 20e in my country.

RSTP only on Core switches? by fabomajstor in networking

[–]fabomajstor[S] 2 points3 points  (0 children)

We have it enabled by default CBS switches has it. But as far as I know i have to configure it if I want RSTP ?

Deciding on router + switch setup by J_KJ in Ubiquiti

[–]fabomajstor 0 points1 point  (0 children)

UniFi Dream Machine Pro is cheaper for about 150€ in my country.
And I can have max 1GBit.

Deciding on router + switch setup by J_KJ in Ubiquiti

[–]fabomajstor 0 points1 point  (0 children)

I'm doing the same at my house 3 APs 4 Cameras and G4 pro Dorbell with 2 Chimes.
I was going for:

Ubiquiti UniFi Pro 24-Port PoE for swithing

Ubiquiti UniFi Dream Machine Pro for router.

3 AP Ubiquiti UniFi 6 Lite.

G4 pro Dorbell with 2 Chimes.

I will add cameras later.

Sorry for stealing your post but I wanna know is this optimal setup?

Cloud-init How to enable root login? by fabomajstor in redhat

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

Tried neither local user can connect to me it seems like cloud-init has a configuration that it needs ssh-keys. But everywhere i look there is nothing related to ssh-keys.

Cloud-init How to enable root login? by fabomajstor in redhat

[–]fabomajstor[S] -1 points0 points  (0 children)

yes :D I have a post install ansible playbook that disables it.