• 1 Post
  • 3 Comments
Joined 1 year ago
cake
Cake day: July 18th, 2023

help-circle

  • Thanks! definitely aiming for a stupid easy installation/management for the app itself; but in my experience getting a wide range of supported log sources is no small feat. I’ve been using fluentbit to handle collection from different sources and using the following has been working well for me:

    • docker ‘journald’ log driver
    • fluentbit ‘systemd’ input
    • fluentbit ‘http’ output like the one in the readme

    with that setup you can search for container logs by name which works great with compose:

    or process logs from an nginx container like this to see traffic from external hosts:

    I’ll add a more complete example to the docs, but if you look in the repo there’s a complete example for receiving and ingesting syslog that you can run with just “docker compose up”



  • Kryesh@lemmy.worldtoSelfhosted@lemmy.worldVLAN question
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    7 months ago

    So the PC connected to opnsense is running proxmox for it’s OS? Create a bridge for each physical interface, then add a tagged interface to it for the one connected to opnsense; Eg, vmbr2 could have enp2s0.100 and enp9s1f0 as members. Just add .vlanid to the end of the interface name in the bridge settings in proxmox, and don’t make the bridges vlan aware. If vmbr0 is vlan aware then just add vmbr0.100 instead of enp2s0.100 With that setup the server will switch packets between the vlans on enp2s0 and the other interfaces. Don’t need to put any VMs on the bridges

    Will add: this is using the PC like a switch, you’re probably better off using an actual switch with vlan configuration instead