Search results for query: hardening

  1. guletz

    Should an official Proxmox "Hardening" wiki page be created?

    Hi, Hardening, for any OS is not a trivial task. A wiki will be useful for most of the users. But it will be a dificult task, because are n situastion and use case like(only few...): - home user single PMX server - test lab(including cluster setup) - single PMX setup with remote access -...
  2. E

    Should an official Proxmox "Hardening" wiki page be created?

    I would say this is overly broad statement. On the opposite extreme side of the spectrum, I could state that if one truly wants mitigations, layers of separation, etc. ... just forget the whole KVM (let alone LXC) and go with Xen. So platforms-wise this part differs. Of course it impacts e.g...
  3. A

    Should an official Proxmox "Hardening" wiki page be created?

    ...necessary. Security as applicable to a pve environment isnt really any different than any other virtualization platform, which means any hardening policies that would be best practices generically or even specifically to another platform (eg, vmware) would be just as applicable here. To make...
  4. justinclift

    Should an official Proxmox "Hardening" wiki page be created?

    Well, as an example of the kind of thing I'd expect in a hardening guide for Proxmox: Use LISTEN_IP in /etc/default/pveproxy to control which interface or IP address the Proxmox web interface and spice proxy listen on Don't use the alternative approach of using ALLOW_FROM, DENY_FROM, and...
  5. E

    Should an official Proxmox "Hardening" wiki page be created?

    ...way (apt upgrade and dist-upgrade comes to mind). And then the networking part where one might easily e.g. filter corosync traffic while "hardening" their HA cluster.... I do not think it's wrong for people to come ask here first before they are told "so this one you can follow the Debian (or...
  6. LnxBil

    Should an official Proxmox "Hardening" wiki page be created?

    ...is part of the Hyper-V documeentation. This is the same for PVE. There are Debian forums and tutorial available that cover this and sometimes also non-distribution specific Linux tutorials. This is especially true for the hardening part, which is mostly just a "simple linux hardening problem".
  7. LnxBil

    Should an official Proxmox "Hardening" wiki page be created?

    As already said: Don't face them to the internet (directly)... there are plenty of technologies available ranging from VPN to TLS client certificates, that need to be deployed around your infrastructure. VLAN you stuff properly (at least this 3-layer solution): hardware mangagement interfaces...
  8. justinclift

    Should an official Proxmox "Hardening" wiki page be created?

    ...which host live, internet facing VMs. Thus the hosts themselves are internet facing too, or should at least be considered as such. Proper hardening isn't rocket science, but it sounds like the Proxmox testing and packaging process has enough gaps that extra care needs to be taken. Need to...
  9. E

    Should an official Proxmox "Hardening" wiki page be created?

    ...fired for CVE fallout if they paid anything "enterprise", right? But it really does not offer anything more than best-effort SLA. Again, hardening in this sense would serve what purpose? To have it open to the internet? Something it was never designed for ... It is the right link from a...
  10. justinclift

    Should an official Proxmox "Hardening" wiki page be created?

    ...up in RHEL. The current Proxmox approach of "no-subscription" and "enterprise" repo seems to broadly do the same kind of thing. For a Hardening guide, it'd make sense to have a pretty prominent item about "Get a Proxmox subscription and use the Enterprise repositories". That should help...
  11. E

    Should an official Proxmox "Hardening" wiki page be created?

    ...is always relevant , but they do not ask to get mocked. They would not be asking if it had been documented. Might that be a conscious decision too? [1] https://www.proxmox.com/en/downloads [2] https://enterprise.proxmox.com/iso/ [3] https://forum.proxmox.com/threads/security-hardening.134055/
  12. E

    Should an official Proxmox "Hardening" wiki page be created?

    1. This would be impossible to do, would turn into a farce. PVE is architected with the idea that it runs on a separate VLAN. 2. If you read some of the bugreports (never rotated CAs, keys, CSFR approach, etc.), how PVE team approaches security risks (CVEs) or how beta the "non-subscription"...
  13. G

    Should an official Proxmox "Hardening" wiki page be created?

    first hardening : do not open host to public, built-in firewall to allow only whitelisted ip or vpn.
  14. Dunuin

    Should an official Proxmox "Hardening" wiki page be created?

    Yes, even some overview pointing to guides would be useful. I guess there are tons of documentations for Debian security hardening out there that should also apply for PVE/PBS. Like making use of public private keys instead of passwords for SSH, fail2ban, proper monitoring, log collectors, SIEM...
  15. justinclift

    Should an official Proxmox "Hardening" wiki page be created?

    As a general thought, I'm wondering if an official Proxmox Hardening wiki page would be useful? Maybe placed here or similar? https://pve.proxmox.com/wiki/Hardening Asking because hardening a server (or cluster thereof) isn't rocket science, but seems to be under documented apart from various...
  16. Dunuin

    Storage (how would you?)

    ...you customize PVE a lot because you want stuff like UPS client, monitoring agent, encryption, SMTP relay server, log collector, security hardening, ... If it is easy to reinstall PVE, you either spend a lot of time initially creating scripts or ansible playbooks to automate all set up. Or you...
  17. T

    rpcbind

    hi justinclift. we basically restricted rpc to localhost. we did this via adding /etc/systemd/system/rpcbind.socket.d/override.conf: [Socket] ListenStream= ListenDatagram= ListenStream=127.0.0.1:111 ListenDatagram=127.0.0.1:111 ListenStream=[::1]:111 ListenDatagram=[::1]:111 i cant remember...
  18. justinclift

    rpcbind

    @Thomas Jagoditsch How did things go with this? Asking because I'm working out the process for hardening an internet facing 2 node cluster, and rpcbind looks to be bound by default to udp:111 on both of our nodes as well. We've stopped and disabled the service for now (ie: "systemctl disable...
  19. justinclift

    A small script for connecting to SPICE client via ssh tunnel

    I'm currently working out the process of hardening a two node Proxmox cluster for internet facing deployment. As part of that I'm moving all ports (other than ssh) to internal network interfaces that aren't publicly accessible. ssh will have it's own security configuration, not covered here...
  20. Dunuin

    Tool/scripts to assist with node rebuild

    ...They won't backup anything you changed via CLI, like limiting ZFS ARC, setting up Postfix/NUT/monitoring agents/log collectors/security hardening/... . Only official you will find is this for backing up/restoring the database that contains the configs of /etc/pve...