My homelab setup with Dell PowerEdge R730 running Proxmox and K0s
To silence the fans, install ipmitool
apt install ipmitool -yEnable manual fan control
ipmitool raw 0x30 0x30 0x01 0x00Disable manual fan control
ipmitool raw 0x30 0x30 0x01 0x01Turn fan to 10% - 0xA is 10
ipmitool raw 0x30 0x30 0x02 0xff 0xATurn fan to 20% - 0x19 is 20
ipmitool raw 0x30 0x30 0x02 0xff 0x19Monitor some relevant metrics
ipmitool sdr elist fullSetup tailscale to access network externally
curl -fsSL https://tailscale.com/install.sh | sh- Access target device by enabling tailscale VPN and access via assigned IPv4 or IPv6
Instructions taken from https://dustri.org/b/running-tailscale-inside-of-a-proxmox-container.html
- Add some lxc config in proxmox specifying correct ID - 100 in this example
echo 'lxc.cgroup.devices.allow: c 10:200 rwm' >> /etc/pve/lxc/100.conf
echo 'lxc.mount.entry: /dev/net/tun dev/net/tun none bind,create=file' >> /etc/pve/lxc/100.conf- Enter lxc container
pct enter 100- Install and configure tailscale
curl -fsSL https://tailscale.com/install.sh | sh
echo 'net.ipv4.ip_forward = 1' | tee -a /etc/sysctl.conf
echo 'net.ipv6.conf.all.forwarding = 1' | tee -a /etc/sysctl.conf
sysctl -p /etc/sysctl.conf
reboot