Search results

  1. H4R0

    OPNsense best practices?

    Almost all packets are dropped ? Does the output of "ifconfig bond0" state the drops as well ? I only have 289 drops for 200GB of traffic and if I run tcpdump there are none. Do you have the firewall of pve enabled or custom iptable rules ? "iptables -L"
  2. H4R0

    cpu ramps up 100% (possible hack)

    That's brute forced in less then 10 minutes. Bad idea. You can check gui logins with: zcat /var/log/syslog*gz | grep "successful auth" But they probably purged logs, so it doesn't help much.
  3. H4R0

    cpu ramps up 100% (possible hack)

    How strong was your password ? Was portainer exposed as well ? Wipe it completely, be careful with backups they are likely compromised as well. CPU usage comes from kvm which is your running pfsense. The theme doesn't even change much, where did you get it from ?
  4. H4R0

    NIC Bonding - Performanceprobleme

    ZFS falsch konfiguriert, cache und slog auf gleicher platte ist performance killer. Der slog macht bei raidz1 auf ssd wenig sinn und cache braucht nicht redundant sein. Teste mal die pool performance, hat nichts mit dem netzwerk zu tun. Würde slog und cache raus nehmen und erneut testen. apt...
  5. H4R0

    OPNsense best practices?

    Looks good to me. Sadly I have no documentation for the ha part of opnsense and it's been over a year since. I would make sure the multicast traffic works. Install tcpdump on both pve nodes and run "tcpdump -i <interface> -s0 -vv net 224.0.0.0/4" Make sure multicast traffic from firewall1...
  6. H4R0

    OPNsense best practices?

    You can override mac in interface settings, maybe that helps. Since both firewalls are master there must be a issue with the carp multicast traffic. Can you login to the opnsense shell (setup serial console or ssh) And post the output of "ifconfig vtnet0" (remove public ipv6 if needed)
  7. H4R0

    DIfference between "Create VM" and "Create CT"

    Depends on the storage, only possible with zfs. But you can always full disk encrypt your whole proxmox.
  8. H4R0

    OPNsense best practices?

    Yeah the second firewall should show "BACKUP" on the dashboard. Can you double check with the official documentation https://docs.opnsense.org/manual/how-tos/carp.html Did you create firewall rules to allow carp on all interfaces ? You can use floating to make it simpler. Maybe post...
  9. H4R0

    ZFS cache with mirrored SSDs?

    For l2arc it doesn't really make sense, there is no data loss. For slog always use a mirror.
  10. H4R0

    DIfference between "Create VM" and "Create CT"

    There is none, but it is really easy to setup, takes 1 minute. Create container, change container options -> features -> enable keyctl and nesting. Start the container, run "pct enter <id>" or select container shell and login. Run the docker bootstrap script to install it automatically: apt...
  11. H4R0

    PFSense VM on Proxmox

    Use vlans, you need a managed switch e.g. netgear gs308e or tplink sg108e
  12. H4R0

    DIfference between "Create VM" and "Create CT"

    You can't create containers from iso files. In your pve gui select storage "local" -> ct templates -> templates -> search for ubuntu -> download VM's and container have different pros and cons. For speed container win in every aspect since they have raw host performance.
  13. H4R0

    RAM Auslastung geht nicht nach Benutzung runter

    Das ist nicht möglich, bis auf regelmäßige cache drops, sollte man aber möglichst vermeiden. Einfach der VM nicht mehr Arbeitsspeicher geben als sie benötigt.
  14. H4R0

    Local host restore from PBS 1.0.8 fails with 'bin EEXIST' even with --allow-existing-dirs

    Replacing / recursively on a live system calls for trouble. Just restore the files that you changed if possible. Otherwise live boot debian/ubuntu, install pbs-client, mount pve and restore that way.
  15. H4R0

    Internet Traffic von Proxmox vServer loggen

    Dafür sql via grafana, kannst dir Tabellen generieren und als csv exportieren.
  16. H4R0

    Proxmox VLAN aware

    Config is correct, supposed your switch supports lacp. Just to be sure, you have a gateway with dhcp in the other vlans ? Post vm config, switch config and nic details. Some nic have trouble with vlan over bond, you can try without the bond to verify.
  17. H4R0

    Internet Traffic von Proxmox vServer loggen

    Dir ist aber schon bewust, dass du die range oben rechts einstellen kannst ? Stunde/Tag/Woche/Monat/Jahr Ansonsten grafana benutzen, damit kannst du dann per sql genaue reports erstellen. https://pve.proxmox.com/wiki/External_Metric_Server Ich hoffe du weißt was du machst...
  18. H4R0

    No IPV6 for LXC container

    For RA set container network to "SLAAC" Otherwise setup a DHCPv6 server.
  19. H4R0

    Thin Provisioned Windows-VMs use full capacity in Proxmox Ceph after migration

    Afaik sata doesn't support trim. You have to use virtio for trim to work. Download virtio drivers here: https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.iso Install the vioscsi driver, after that power down the vm and change the config from "sata0" to...
  20. H4R0

    [TUTORIAL] ZFS not most recent snapshot bypass

    In case you use autosnapshot or other tools to do periodic zfs snapshots and thus can't use the roolback feature of pve. This patch enforces the rollback, execute as root in terminal: cat << 'EOF' > /etc/cron.hourly/proxmox-zfs-rollback-force #!/bin/bash...