phi0x

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by phi0x

  1. Anyone else having this issue with wireguard enabled?
  2. Having an issue where I can internally on my local network access rutorrent, but my external network I cannot access rutorrent anymore via the DNS I had setup. The issue started happening once I upgraded my config to use wireguard. The wireguard works for rutorrent perfectly and can be accessed like I said via LAN clients. But it broke the ability to access the docker container remotely. I tried rolling back the config to use the old openvpn config, and it works again fine, but the second I go to use the new wireguard config, it breaks the external networks ability to access. Even when accessing via the external DNS method on a local machine on the network, it does not work, but the second i revert the config back to openvpn config, it works. The only change really in the docker config I see is the addition of: --sysctl="net.ipv4.conf.all.src_valid_mark=1" \ --privileged=true \ and removal of: --cap-add=NET_ADMIN \ could it be the iptables that the container uses needs updating? Does the valid_mark sysctl rule cause external source requests to drop? thoughts? full config: docker run -d \ --sysctl="net.ipv4.conf.all.src_valid_mark=1" \ --privileged=true \ -p 8118:8118 \ -p 9443:9443 \ --name=torrentvpn \ -v /docker/torrentvpn/data:/data \ -v /docker/torrentvpn/config:/config \ -v /mnt/pool:/pool \ -v /etc/localtime:/etc/localtime:ro \ -e VPN_ENABLED=yes \ -e VPN_USER= \ -e VPN_PASS= \ -e VPN_PROV=pia \ -e VPN_CLIENT=wireguard \ -e STRICT_PORT_FORWARD=yes \ -e ENABLE_PRIVOXY=yes \ -e ENABLE_AUTODL_IRSSI=yes \ -e ENABLE_RPC2=yes \ -e ENABLE_RPC2_AUTH=yes \ -e ENABLE_WEBUI_AUTH=yes \ -e RPC2_USER= \ -e RPC2_PASS= \ -e WEBUI_USER= \ -e WEBUI_PASS= \ -e LAN_NETWORK=192.168.0.0/24 \ -e NAME_SERVERS=209.222.18.222,84.200.69.80,37.235.1.174,1.1.1.1,209.222.18.218,37.235.1.177,84.200.70.40,1.0.0.1 \ -e DEBUG=false \ -e PHP_TZ=UTC \ -e UMASK=000 \ -e PUID=0 \ -e PGID=0 \ binhex/arch-rtorrentvpn
  3. I am planning to use unraid for the first time and have a scenario where i need to migrate my current data off my drives and onto the new drives i purchased. I want to have as minimal downtime as possible thus have come up with this plan, let me know if it will work.. I want to take my new drives and install them in a spare computer I have and use my unraid flash drive to setup a pool then transfer the data over the network from my server to the other computer that temporarily will host the unraid pool. Once data is synced over, take the unraid flash drive and the disks from the computer and place them into the desired server then bootup unraid. Will this approach work or does unraid ty itself in any way to the sata ports/motherboard/cpu configuration? If this will work, then it'll make my life way easier due to reducing the downtime and giving me more time to properly configure my vm's along with sync data to the pool.
  4. Great I'll do more research on how to set that up thanks!
  5. Well I'm trying to ensure that I will be able to also potentially one day use GPU encoding/decoding and I've read it's complicated or not possible with docker image. Still have some time before I need to worry about lots of x265 content but I would like to not put myself in a situation where I cannot use a GPU and would have to reinstall and reconfigure everything again. I'm guessing when that moment comes for hardware considerations, I may stick with CPU/mobo/ram upgrades since CPU transcoding is better quality than GPU, but again, I know that is coming down the road so trying not to limit myself. If you think it's not a concern then I will look into docker / kubernetes.
  6. I've come to a point where my current plex server has ran out of space and I also want to ensure that all my content is somewhat safe without necessarily having to put extended wear on all my drives, hence unraid with parity sounds like the perfect fit for ensuring that some drives that aren't being accessed can be spun down when not in use. I have max on average 3-6 streams concurrently. half tend to transcode. I use a ramdisk for saving my disks health and for speedier transcoding. I'm wondering if the following hardware setup and strategy will be sufficient with unraid with a parity implementation or if you see any bottlenecks. hardware: motherboard: Gigabyte 990FXA-UD3 CPU: AMD FX-8350 Eight-Core Processor RAM: 32GB 1600mhz Storage drives: WDC WD20EARS-00MVWB0 WDC WD25EZRS-00J99B0 ST10000VN0004-1ZD101 ST10000VN0004-1ZD101 WDC WD25EZRS-00J99B0 WDC WD20EARS-00MVWB0 OS drive: SanDisk SD6SB1M256G1002 New hardware I picked up but haven't put into the server yet: OS drive: Samsung Evo 970 Plus 500gb (running via m.2 pcie slot expansion card since mobo doesn't have a slot for it.) New additional storage drive: Seagate 14TB IronWolf NAS SATA 6Gb/s NCQ 256MB Cache 3.5-Inch Internal Hard Drive - (ST14000VN0008) New parity disk: Seagate 14TB IronWolf NAS SATA 6Gb/s NCQ 256MB Cache 3.5-Inch Internal Hard Drive - (ST14000VN0008) I won't have enough SATA ports to use the two new disks but I will remove all drives first then install the new samsung Evo 970 plus 500gb drive and install the two ironwolf 14tb drives then setup unraid and place one of the ironwolf drives as a parity disk are my thoughts. Once unraid is setup and once I have reinstalled ubuntu for my plex server, then I plan to put the other disks back in one by one and copy their data over into the unraid pool. Once the data is copied off each disk, I will then add that disk into the pool, where the pool will format/prepare it. That is my understanding of how unraid works and how I can grow my pool - if I'm mistaken please clarify/point me to a post/doc I can read that would clarify the steps I should take to migrate my old data into the pool and then re-add the disks I migrated content from into the new pool. Do you see any issues with this setup and or approach? I know parity setup does slow things down but I think my pool will perform fast enough to serve the content still to 3-6 streams worth? thank you for any tips in advance!