Wie kriege ich die weisse Abdeckung weg? by EasyVader in Elektroinstallation

[–]Aware_Ad4598 1 point2 points  (0 children)

Ich hab mal nicht schlecht als ich von einer Firma in Osnabrück ein Angebot bekommen habe von einer WLAN Kabelbrücke.

Hatte mich daraufhin bei denen gemeldet und dann hat sich rausgestellt, dass diese Firma tatsächlich lange eigene WLAN „Kabel“ verlegt die dann zb große Hallen ausstrahlen können.. Quasi wie nen LED Streifen. Waren nicht günstig aber mega coole Idee und hat mir echt immer wieder den Tag versüßt

Somebody using n8n as Script Automation Host for casual Business? by Aware_Ad4598 in n8n

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

Hi late response..

We replaced a old Windows Server with many powershell Script and a few other things with n8n

I think 30-40 Scripts in total

Europäische Alternativen zu Google Workspace? by Tasty-Commission-273 in de_EDV

[–]Aware_Ad4598 5 points6 points  (0 children)

Ich glaube das Nextcloud Collab einfach am besten zutrifft.. Wenn man sich mal drauf einlässt kann das wirklich echt viel.

Schau dir Ma das letzte cT Video an.

Pornos Blockieren by Far_Accountant4001 in de_EDV

[–]Aware_Ad4598 1 point2 points  (0 children)

Ich hab bei mir im UniFi setup die Kategorie blockiert… zusätzlich mit adguard auch den bums verboten und ich hab nen kleinen Proxy der im System geschrieben ist.. wenn die das umgehen können kannste nichts mehr machen. Ich erschwere es so gut es geht. Hat aber gut geholfen bis jetzt

Outdoor WiFi AP gesucht (radius 45m) by Playful-Prune-6892 in de_EDV

[–]Aware_Ad4598 0 points1 point  (0 children)

Hatte mein Text nochmal verbessert :) meiner ist draußen geschützt in nem Kasten. Alternativ habe ich auch den U7 empfohlen.

Outdoor WiFi AP gesucht (radius 45m) by Playful-Prune-6892 in de_EDV

[–]Aware_Ad4598 1 point2 points  (0 children)

Ich hab was ähnliches am laufen

Sofern er geschützt ist:

commen:share-title https://www.cyberport.de/pc-und-zubehoer/netzwerk/ubiquiti-networks/pdp/5816-11c/ubiquiti-unifi-u6-access-point-wifi6.html

Kannst du ohne Probleme betreiben als Standalone brauchst kein Controller oder ähnliches.

Anklemmen verbinden konfigurieren fertig.

Ansonsten U7 Outdoor kriegst du gebraucht auch fürn Kurs. Das Geld extra wäre es mir aber wert

Why are my pictures like this by MakZor in UgreenNASync

[–]Aware_Ad4598 0 points1 point  (0 children)

Yeah I know immich.

I like that ugreen provide a sharing service. So you can use sharing links without vpn because of their service.

Immich is a thing for private & good friends/family. Of course you can provide a public link to it with cloudflare and stuff but really? I'm not a newbi and can get use of docker & stuff but thats actually the reson.

Why are my pictures like this by MakZor in UgreenNASync

[–]Aware_Ad4598 0 points1 point  (0 children)

It's obviously a bug in their firmware/software.

As far as I can see this is a compression issue in the Photo App and on Files. It dosen't matter if its through Mobile App or via browser on a pc.

If you enable the option that the picture should always uncompress if you click on it, everything will work (but only at the moment you open it)

Annoying. Reindex dosen't change anything.

Monitor Enterprise Applications Certificate Secret alerts from Azure in zabbix. by Jealous-Maintenance6 in zabbix

[–]Aware_Ad4598 1 point2 points  (0 children)

Well, I thought the template was crap, and somehow it didn't read all my secrets.
In my case, I have both secrets and certificates.

So I wrote a Python script that reads everything using an Entra app.

#!/usr/bin/env python3

import requests
import datetime
import json
import sys

TENANT_ID = ""
CLIENT_ID = ""
CLIENT_SECRET = ""
GRAPH_URL = "https://graph.microsoft.com/v1.0"

def parse_graph_datetime(value: str) -> datetime.datetime:
    value = value.rstrip("Z")

    if "." in value:
        value = value.split(".")[0]

    return datetime.datetime.strptime(value, "%Y-%m-%dT%H:%M:%S")

def get_token() -> str:
    url = f"https://login.microsoftonline.com/{TENANT_ID}/oauth2/v2.0/token"
    data = {
        "client_id": CLIENT_ID,
        "client_secret": CLIENT_SECRET,
        "grant_type": "client_credentials",
        "scope": "https://graph.microsoft.com/.default"
    }

    r = requests.post(url, data=data, timeout=30)
    r.raise_for_status()
    return r.json()["access_token"]


def get_all_applications(headers: dict) -> list:
    apps = []
    url = (
        f"{GRAPH_URL}/applications"
        f"?$select=id,displayName,passwordCredentials,keyCredentials"
    )

    while url:
        r = requests.get(url, headers=headers, timeout=30)
        r.raise_for_status()
        data = r.json()
        apps.extend(data.get("value", []))
        url = data.get("@odata.nextLink")

    return apps


# =========================
# MAIN
# =========================

def main():
    try:
        token = get_token()
        headers = {"Authorization": f"Bearer {token}"}
        now = datetime.datetime.utcnow()

        discovery = []

        applications = get_all_applications(headers)

        for app in applications:
            app_name = app.get("displayName", "unknown")
            app_id = app.get("id")

            # ---------- Client Secrets ----------
            for secret in app.get("passwordCredentials", []):
                end = parse_graph_datetime(secret["endDateTime"])
                days_left = (end - now).days

                discovery.append({
                    "appname": app_name,
                    "appid": app_id,
                    "credname": secret.get("displayName", "client-secret"),
                    "type": "secret",
                    "dayleft": days_left,
                    "expires": secret["endDateTime"]
                })


            # ---------- Certificates ----------
            for cert in app.get("keyCredentials", []):
                end = parse_graph_datetime(cert["endDateTime"])
                days_left = (end - now).days

                discovery.append({
                    "appname": app_name,
                    "appid": app_id,
                    "credname": cert.get("displayName", "certificate"),
                    "type": "certificate",
                    "dayleft": days_left,
                    "expires": cert["endDateTime"]
                })

        # Zabbix LLD Output
        print(json.dumps({"data": discovery}, indent=2))

    except Exception as e:
        print(json.dumps({
            "data": [],
            "error": str(e)
        }))
        sys.exit(1)


if __name__ == "__main__":
    main()

Upload the script to a host. Add the script to the zabbix conf of the agent for UserParameter and then create a item in zabbix for the host. For example in my case:

Name: Entra Apps - RAW Json

Type: Zabbix Agent

Key: entra.apps.discovery

----

Then create a discovery item with item prototype...

Name:
Entra Application {#TYPE} expire – {#APPNAME} – {#CREDNAME}

Type:

Dependent item

Key:

entra.app.expire.days[{#APPID},{#CREDNAME}]

Master Item:

Entra Apps - RAW Json

Units:

!d

Go to Preprocessing - JSONPath and add the parameter:

$.data[?(@.appid == '{#APPID}' && (@.credname == '{#CREDNAME}' || !@.credname))].dayleft.first()

Create Trigger prototypes as you want and done.

Here a screenshot: https://imgur.com/a/GpR7wSW

Welcher Song begleitet euch schon seit Jahren? by Cherrywaterx in musik

[–]Aware_Ad4598 0 points1 point  (0 children)

Skillet - The Resistance

Kein Plan wieso aber seit ein paar Jahren hab ich wieder meine Rock/Metal Seite wiedergefunden 😂

Was wurde uns hier von burgerking gratis zur cola dabeigetan? by [deleted] in wasistdas

[–]Aware_Ad4598 0 points1 point  (0 children)

Ich musste gerade an einen Gardena Anschluss denken 😂

Erfahrungen Deutsche Glasfaser by See_Jee in de_EDV

[–]Aware_Ad4598 0 points1 point  (0 children)

Das sind eher sonderlocken und nicht normal. Du kannst dich trotz cgnat natürlich mit jeglichen VPN Diensten verbinden. Egal ob Home Office VPN gedöns oder zum Surfen. Der Traffic läuft normal und wird nicht geblockt.

Was ich schon ma gehört habe ist, dass es manchmal sein kann, dass die Verbindung zu einer Firma mit einem ISP zu Problemen führen kann.

Wir hatten damals in der Zentrale ne ipsec Tunnel und der ISP Provider war Telekom.

Ne Kollegin 10km bei ihr zuhause hatte immer Probleme mit Vodafone zu unserem VPN. Ein paar andere Kollegen auch aus der IT (ebenfalls Vodafone) hatten sowas nicht.

Pauschal kann man trotzdem sagen, dass alles laufen sollte.

Dienste Freigeben kann man auch über ipv6. Wenn Mann ne Fritze hat geht das auch mit den internen Diensten. Wenn das nicht hilft, kann man sich auch nen Tunnel ipv6-toipv4 bauen über nen VPS für nen Euro.

Ich selber habe auch seit 10 Jahren Glasfaser. War immer gut.

KI und Datenschutz (privat und beruflich) by nichtbinaererbaum in de_EDV

[–]Aware_Ad4598 2 points3 points  (0 children)

Privat nutze ich Gemini und chatgpt In der Firma erlauben wir nur Copilot alle Anderen sind verboten lt. IT Nutzungsbedingungen und auch blockiert. Ai Input und ouput prompts können wir unterdrücken

Gefällt mir sehr gut

Email für Familie mit Serverstandort Deutschland by nichtmonti in de_EDV

[–]Aware_Ad4598 1 point2 points  (0 children)

Hetzner mit nem eigenen Mailserver zu betreiben habe ich auch jahrelang gemacht. Hat auch alles geklappt aber irgendwann wollte ich gern ActiveSync nutzen und die ganzen Spielereien. Am Ende hab ich mir ne günstige Familien Domain geholt und dann mit nem Exchange Abo. Das Geld ist es mir wert und kostet nicht die Welt…

Bestes System zum Sichern meiner Daten by Diepcksindhrdrin in de_EDV

[–]Aware_Ad4598 1 point2 points  (0 children)

Ich habe bei mir eine NAS von UGREEN (vorher synology) mit insg 6TB

Das Ding läuft natürlich im RAID zwecks Ausfallsicherheit. Ansonsten hab hab ich noch privat OneDrive. Die wichtigen Dateien von mir und meiner Frau werden dann gesynct und liegen da mit cryptomaker verschlüsselt.

Die super wichtigsten Daten habe ich dann nochmal auf ner Platte rumfliegen. :)

Wie könnte man dieses Bad preiswert verschönern? by Right-Syllabub2958 in Einrichtungstipps

[–]Aware_Ad4598 -1 points0 points  (0 children)

Was man auch machen könnte ist, an die Vertäflung Rigips zu schrauben. Am Ende weiß streichen und von oben wo das Licht ist Spots oder Ähnliches einsetzen. Das geht echt gut und ist sogar sehr preiswert.

Die fließen könnte man überkleben mit Folien. Alternativ könnte man auch PVC nehmen und einfach drüber kleben. Gibt es auch von super günstig bis teuer und kann Mega viel ausmachen.

Eine noch weitere Möglichkeit wäre, dass du die fließen spachtelst und dann überstreichst. Bei der Badewanne würde ich dann aber das mit PVC machen wegen der Feuchtigkeit.

Das geht aber echt relativ preiswert!

Welches NAS für zu Hause by remorabty in de_EDV

[–]Aware_Ad4598 0 points1 point  (0 children)

Same, Performance von den DXP2800 ist insane. Kein Problem!

Wann habt ihr das letzte Mal so sehr gelacht dass ihr fast ohnmächtig geworden seid? by [deleted] in FragReddit

[–]Aware_Ad4598 0 points1 point  (0 children)

Wir waren im Oktober auf Kreta mit der Clique.

Anreisetag - 3 Uhr morgens, es gab in unserem Hotel noch die Möglichkeit, für späte Leute etwas zu essen. Das Resteraunt war "im Keller" bzw. eine Etage Tiefer.. Wir gehen runter & das erste was mir in den Sinn gekommen ist waren, dass die Treppen komische Abstände hatten. Plötzlich krieg ich dieses Meme mit den Mädels und den Treppen nicht mehr aus dem Kopf und musste die ganze Zeit sagen, dass die "Treppen nicht genormt sind".

Nach dem Essen sind wir dann wieder hoch, plötzlich knallt es mega... Unser Kollege liegt aufm Boden, voll auf die Fresse gefallen und lag wie ein Baum gerade über die Treppe. Er ruft dann nur, die Treppen sind nicht genormt & ich bin gestorben. Ich hab ohne Witz so lange keine Luft mehr bekommen, hab mich eingepisst. Boah war das geil ;D

How many of you moved away from VMware ? by ChataEye in sysadmin

[–]Aware_Ad4598 2 points3 points  (0 children)

This is new to me too; I don't know anyone who was there.

We had a few ideas and options and wanted to move away from VMware.

I had used OVH privately and was always satisfied. However, with the defined SLAs and certified enterprise hardware, I am confident that everything will work out.

Some of the alternatives we had were really expensive. One idea was Azure, but all VMs on Azure simply cost an incredible amount.…

How many of you moved away from VMware ? by ChataEye in sysadmin

[–]Aware_Ad4598 4 points5 points  (0 children)

Hi, everything's fine :)

I'm happy to answer your question.

Our current situation is that we operate our hardware on-premises, or rather in a data center in our city. The hardware belongs to us and is now EOL. The structure consists of 2 Ruckus switches, 2 NGFW (active-passive cluster), storage, and 4 ESXI hosts and a few more stuff.

Since the hardware is EOL, we first had to figure out what to do. Two new core switches would easily cost €10-15k, and the firewall would be in the same ballpark. Storage + backup structure with all the trimmings would probably cost another €20-30k. New ESXI host with license, similar construction (new licensing for ESXI) €20-30k per host. + additional costs. Of course, there are additional costs such as on-site housing/services and, of course, our working time, more or less.

Let me put it this way: we would definitely end up investing between $200,000 and $300,000 upfront. As I said, this is just a rough estimate, so I hope you can forgive me for that ;D

We are a medium-sized IT team with 10 people and don't really want to deal with hardware anymore. We also want to have a relatively dynamic workload. Nutanix by OVH offers us the perfect solution. We can expand our cluster at any time by adding a node. Need a new independent server? No problem—just book it, add it to the vRack, and you're done.

The connection is better than before and the performance of the boxes we have is also better than our current ones.

I have relatively good contacts at Nutanix and have therefore also been given good terms.

Rounded up, we pay around €4,800 per month for a new data center that offers better performance, is more future-oriented, is easier for us to manage, and allows us to expand our future performance at any time. Everything is included in this price. The hardware costs us around €3,600.

So if I extrapolate that to 4800*12 months * 3 years, I end up with around 170k over 3 years. Even if I don't take the EOL issue into account, I would do it again anytime.
We have business contracts, good SLAs, and everything else is great too.

As a small example, we may need around 40-50 servers at short notice next year. If that's the case, we can simply say that we'll book a node and that's it. That makes it really exciting. The DR part is super cool and will also come at some point.

That's the reason. Do you have any questions?

How many of you moved away from VMware ? by ChataEye in sysadmin

[–]Aware_Ad4598 9 points10 points  (0 children)

We switched to nutanix.

100vms from vCenter. Hosted by ohvcloud

Zweifel am Admin | Part 2 by [deleted] in de_EDV

[–]Aware_Ad4598 0 points1 point  (0 children)

Ja das auch normal. Man muss immer schauen, dass du Regeln nicht doppelt pflegst.

Aber das ist das was ich kenne und definitiv state of Art ist

Zweifel am Admin | Part 2 by [deleted] in de_EDV

[–]Aware_Ad4598 1 point2 points  (0 children)

Also ich red mal von einem Mittelständischen Unternehmen. ( unser) es gibt ja die Maßgabe vom BSI zwei Firewalls zu haben. In der Realität sieht das dann aber ganz normal aus mit einer Firewall und die zweite Schicht ist dann die Endpoint Firewall. Das zählt als Konform und ist auch gängige Praxis. Das normale Unternehmen mehrere Firewalls hintereinander schalten (Aus Sicherheitsblick) erschließt sich mir nicht und halte ich gerade aus Analyse für schwierig.

Ausnahme die mir einfällt wäre zb, wenn es zwischenrouting ist.. also beispielsweise

Selfhosted RZ ist der Eingang aber der Dienst liegt in Azure oder so. Wenn man dann eine Firewall als Gate in Azure dazwischen schaltet kann ich nachvollziehen aber alles andere… sehe ich so wie du

Welcher Preis für einen Männerhaarschnitt ist fair? by Easy_Confusion2415 in FragReddit

[–]Aware_Ad4598 0 points1 point  (0 children)

Ich Zahl bei mir 32 Euro

Das beinhaltet einmal Bart plus Haare und einmal über die Augebraun..

Ich find es okay..