Search results

  1. L

    Python watchdog and proxmox gui

    Thanks for your answer! I use “watch cat filename” to see changes on the file my watchdog is listening to. The file was changed every time I change some fw rule. So, I don’t think that temp files are relevant to this. Also, I tried to listen to all the files in that directory and can’t see any...
  2. L

    Python watchdog and proxmox gui

    Hey all, i am trying to create a watchdog that will listen to proxmox firewall files and will alert me when a fw rule was modified. I am using python watchdog package. when I modify the file (directly from shell) my watchdog is notice that and alert me. When editing the same firewall file...
  3. L

    [SOLVED] Proxmox VE with XDP

    Thanks! This solved my problem
  4. L

    [SOLVED] Proxmox VE with XDP

    Thanks for your reply! How the buster backports repository is different from the regular? I already installed all of bpf packages from apt.
  5. L

    [SOLVED] Proxmox VE with XDP

    Hey, I want to use an XDP program in Proxmox VE 6.2-1 (Linux pve 5.4.78-2-pve) I already installed with apt the following packages: python3-bcc bpfcc-tools python3-bpfcc libbpfcc libbpfcc-dev pve-headers-5.4.78-2-pve Then, I wrote a python file and a .c file: Python from bcc import BPF b =...
  6. L

    Unable to change the VF state using sr-iov on Proxmox

    Hey! I managed to configure SR-IOV on my Proxmox machine and pass them to my guests using PCI Passthrough. I am attempting to set the state of my virtual function from auto to enable so the VFs link will stay up even if the PF is down using ip link command: ip link set eno2 vf 1 state enable...