I run this server

  • 0 Posts
  • 117 Comments
Joined 11 months ago
cake
Cake day: July 27th, 2023

help-circle









  • I would have a cron that runs a script to pull the list and update IPset, this might not work.

    make a file on your docker server with the below in it, set the file to execute chmod +x file.sh

    #!/bin/sh
    ipset -q flush ipsum
    ipset -q create ipsum hash:ip
    for ip in $(curl --compressed https://raw.githubusercontent.com/stamparm/ipsum/master/ipsum.txt 2>/dev/null | grep -v "#" | grep -v -E "\s[1-2]$" | cut -f 1); do ipset add ipsum $ip; done
    iptables -D INPUT -m set --match-set ipsum src -j DROP 2>/dev/null
    iptables -I INPUT -m set --match-set ipsum src -j DROP
    

    Then add a cron file in /etc/cron.d that runs the script every 24 hours

    10 3 * * * root /root/file.sh
    








  • this is in from Proxmox

    Today at 08:50: no, only the no-subscription repository is affected. a package was moved a bit too early yesterday and it seems the retraction was incomplete, we'll see about getting this fixed ASAP.
    
    Today at 09:15: please just hold off upgrading for the time being - the check aborts the upgrade early enough so that there is no urgent action that needs to be taken while we are fixing this.
    
    24 minutes ago: pve-no-subscription repository should be fixed again.
    
    if you followed the advice here and have installed proxmox-backup-client 3.2.5-1 to work around the warning, please be aware that that version has opt-in experimental features that might not yet be ready for prime time. unless you explicitly invoke vzdump or proxmox-backup-client with parameters to enable those features, it should still be safe.