vonProteus

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by vonProteus

  1. So my problem was caused by k8s binding ports to ip from virbr0 i change from minikube to k3s and everything seems to work as expected
  2. i have vm on unraid i have ASUS RT-AX86U router vm has 2 ip addreses one on br0 and one on virtbr0 i have configured router to forward port to ip from br0 and it don't work when i change configuration of forward to ip of unraid i can perform iperf3 test and it works i test from vps outside my netrork vm is a headless debian system any suggestion or advice will be greatly appreciated
  3. i created 3 scripts for this problem one to regenerate shares from zfs #!/bin/bash -e zfs get sharenfs -H -o name,value,source -t filesystem | grep -v off | grep -v "inherited from" | while IFS=$'\n' read LINE; do LINE=($LINE) NAME=${LINE[0]} SHARENFS=${LINE[1]} echo regenerating share $NAME with $SHARENFS zfs set sharenfs=off $NAME zfs set sharenfs=$SHARENFS $NAME done second one to run on every shutdown of array to backup zfs nfs shares to $BACKUPLOCATION #!/bin/bash -e BACKUPLOCATION=/mnt/tank/storage/unraid/zfs-nfs/backup/ rsync --verbose --archive --human-readable --progress --partial --checksum --delete-after /etc/exports.d/ $BACKUPLOCATION and last one to restore backup on every start of array #!/bin/bash -e BACKUPLOCATION=/mnt/tank/storage/unraid/zfs-nfs/backup/ rsync --verbose --archive --human-readable --progress --partial --checksum $BACKUPLOCATION /etc/exports.d exportfs -ra
  4. thanks for your help @ghost82 now in vm i have two nic one connected to br0 (with internet) from ip in 192.168.172.0/24 second one connected to virbr0 (with internet) with ip in 192.168.122.0/24 which is good enough for me because nfs server has restriction on ip in other subnet than normal one
  5. hi i'm trying to create vm with linux with 2 network interfaces one for normal communication with the world (let's say 192.168.172.0/24) and another to communicate between vm and unraid host only (let's say 10.1.1.0/24) and i don't know how to do it i want something like this because i don't want to give access ip's from my normal network (192.168.172.0/24) to nfs server my vm xml
  6. when i manually edited /boot/config/smart-one.cfg with [ST10000NM001G-Identification_1] hotTemp="48" [ST10000NM001G-Identification_2] hotTemp="48" [ST10000NM001G-Identification_3] hotTemp="48" [ST10000NM001G-Identification_4] hotTemp="48" [ST10000NM001G-Identification_5] hotTemp="48" it seams to help
  7. i have 5x "Seagate Exos X16 10TB ST10000NM001G" with "Unride 6.9.2" disks are unassigned because i use zfs they are hovering temperature wise between 44 and 46 C which is ideal for lots of notifications (default threshold is set for 45) when i click "Dev 1" on "Dashboard" enter 48 in "Warning disk temperature threshold (°C)" and click "Apply" it work, but when i click again "Dashboard" -> "Dev 1" "Warning disk temperature threshold (°C)" is empty (there is only placeholder 45) can anybody tell me how to set "Warning disk temperature threshold"
  8. thanks for grate plugin & feature request @steini84 can you add bash-completion support?