mlebjerg

Members
  • Posts

    25
  • Joined

  • Last visited

Everything posted by mlebjerg

  1. @fr05ty Some games have to be unpacked before use, and will get bottlenecked by that, so is it all things that run slow or? Or just one thing?
  2. Thanks for the feedback, i am going to see what i can do in the next update. It might a while though as i am currently moving from Denmark to Berlin. Might find sometime in August. The plan is to include a way to add custom Adresses and change other ones so it can work on Comcast
  3. I will see what i can do when i get some time. I have heard it works here: https://github.com/lancachenet/monolithic (The guys that made the Docker containers that i combined) but to get that to work you need to change the port for the unraid WebUi, and run these two too: https://github.com/lancachenet/sniproxy, https://github.com/lancachenet/lancache-dns
  4. Hi, i had this when i made the container, worked for me to uninstall and reinstall Hope it helps!
  5. I unfortunately it has to be connected to the internet, Steam Cache works by acting as a DNS and when you are downloading it sees you are contacting steam, and asking for a package it then checks to see if it has it already. If it has: HIT, you get it locally. If it doesn't: MISS, you get it from the internet. If you are the only one on the network steamcache is not a good solution, only if you have a few Gamers on the network. Hope that answered you question
  6. Thanks, i will write you if i need testing
  7. @exico I am working converting it to the new SteamCache/monolithic, if i can get it to work you should be able to fork uklans/cache-domains and paste the url into "CACHE_DOMAIN_REPO" and add all the ones you want. I see apple's has been added Thanks for the suggestion anyways!
  8. Have now When i add the fork awawis (on github) made, i will see if i can add something like that under the advanced tab, or at least make the file editable from appdata. I still have a lot on plate, but in january I should have more time on my hands to update the docker @jzawacki
  9. It really should be faster, how much ram have you given it? Could also be it doesn't hit on all the files, sometimes you have to wait a day or two so your cache has been warmed up, it sounds weird but it has happened to me
  10. Well there is really no need to put it on an SSD unless you have a 10 Gig network, HDD should be fine with a 1 gig network. Besides some game files you have unpack, so your CPU will be the bottleneck if you have the cache on a fast SSD and a 10 gig network This is really a bandwidth saver, the speed is just a niceness thing!
  11. @enigma27 I have never used pfSense, have you watched this video? Setup the dns on your local machine and do this: Terminal (Mac/Linux): dig @X.X.X.X +short steamcache.cs.steampowered.com Power Shell (Windows): Resolve-DnsName steamcache.cs.steampowered.com -server X.X.X.X If it returns a local IP you should be good. Try downloading something on steam and see if it hits or misses. If that works it is a pfSense problem. If it is a problem with SteamCache i will need you to turn off privileged and send pictures of the errors and setup
  12. Hi @enigma27 Sorry for the very late response, i have been super swamped with work and school. Try running it with privileged off. And send me the errors
  13. No problem @mrcake! If you use Pi-hole you just have to adjust your DNS setting in it. If you haven't used it before you should give it a go!
  14. @mrcake Weird! What does the docker logs say, is everything running? Just to make sure, have you tried changing the dns on your router? Or are you just testing it in windows? It could help since there probably are some DNSSec settings on the router that could interfere. And lastly are you running any VPN on the windows client?
  15. Hi there! As @nuhll said, there if powershell gives the correct IP there should't be a problem Sometimes it takes some time for the client to get the hint. How long have you waited? Also if the steamcache IP is different from UnRaid's IP there is no reason to change its ports
  16. You sure do! The bootstrap file which is run during startup sets the input of the variable, but if there is none it will look like this: sed -i "s/CACHE_DISK_SIZE/${CACHE_DISK_SIZE}/" /etc/nginx/sites-available/generic.conf (Bootstrap) ---> proxy_cache_valid 200 206 CACHE_MAX_AGE; (generic.conf) Which nginx will NOT like! because it will either be null or CACHE_MAX_AGE You can find all the .conf files used on github
  17. Yes, mine is 76 megs or so. Does "tail -f /data/logs/access.log" work?
  18. @Didstopia It looks ok, i would try using the "Custom: br0" network type. That works for me. I also see you are using the Docker share for the caching, where i would use a separate share for it, that doesn't use cache drives If the problem persist, please send a picture of the Logs, and a picture of this command "tail -f /data/logs/access.log" running in the containers console
  19. @Didstopia Could you send a picture of the dockers settings? Ctrl + P then choose PDF
  20. I will see if i can make a comcast version in the weekend, i will need you to test it!
  21. Damn Comcast! What is the UP_STREAM_DNS set to?
  22. Nope. How are you sure it is hitting the comcast servers?
  23. @defiant Can you share a picture of the settings and the logs?
  24. Hi everyone, i am having trouble connecting to my VPN for some reason, i logged into rutorrent this morning and it was fine, but when i got home, it had stopped working. It spits out this error: 2018-03-13 21:47:42,125 DEBG 'start-script' stdout output: -P INPUT DROP -P FORWARD ACCEPT -P OUTPUT DROP -A INPUT -i tun0 -j ACCEPT -A INPUT -s 172.17.0.0/16 -d 172.17.0.0/16 -j ACCEPT -A INPUT -i eth0 -p udp -m udp --sport 1197 -j ACCEPT -A INPUT -i eth0 -p tcp -m tcp --dport 9080 -j ACCEPT -A INPUT -i eth0 -p tcp -m tcp --sport 9080 -j ACCEPT -A INPUT -i eth0 -p tcp -m tcp --dport 9443 -j ACCEPT -A INPUT -i eth0 -p tcp -m tcp --sport 9443 -j ACCEPT -A INPUT -s 192.168.87.0/24 -i eth0 -p tcp -m tcp --dport 5000 -j ACCEPT -A INPUT -p icmp -m icmp --icmp-type 0 -j ACCEPT -A INPUT -i lo -j ACCEPT -A OUTPUT -o tun0 -j ACCEPT -A OUTPUT -s 172.17.0.0/16 -d 172.17.0.0/16 -j ACCEPT -A OUTPUT -o eth0 -p udp -m udp --dport 1197 -j ACCEPT -A OUTPUT -o eth0 -p tcp -m tcp --dport 9080 -j ACCEPT -A OUTPUT -o eth0 -p tcp -m tcp --sport 9080 -j ACCEPT -A OUTPUT -o eth0 -p tcp -m tcp --dport 9443 -j ACCEPT -A OUTPUT -o eth0 -p tcp -m tcp --sport 9443 -j ACCEPT -A OUTPUT -d 192.168.87.0/24 -o eth0 -p tcp -m tcp --sport 5000 -j ACCEPT -A OUTPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT -A OUTPUT -o lo -j ACCEPT 2018-03-13 21:47:42,125 DEBG 'start-script' stdout output: -------------------- 2018-03-13 21:47:42,126 DEBG 'start-script' stdout output: [info] Starting OpenVPN... 2018-03-13 21:47:42,136 DEBG 'start-script' stdout output: Tue Mar 13 21:47:42 2018 WARNING: file 'credentials.conf' is group or others accessible Tue Mar 13 21:47:42 2018 OpenVPN 2.4.4 x86_64-unknown-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Sep 26 2017 Tue Mar 13 21:47:42 2018 library versions: OpenSSL 1.1.0f 25 May 2017, LZO 2.10 2018-03-13 21:47:42,137 DEBG 'start-script' stdout output: [info] OpenVPN started Tue Mar 13 21:47:42 2018 NOTE: the current --script-security setting may allow this configuration to call user-defined scripts 2018-03-13 21:47:42,140 DEBG 'start-script' stdout output: Tue Mar 13 21:47:42 2018 RESOLVE: Cannot resolve host address: nl.privateinternetaccess.com:1197 (Name or service not known) 2018-03-13 21:47:42,140 DEBG 'start-script' stdout output: Tue Mar 13 21:47:42 2018 RESOLVE: Cannot resolve host address: nl.privateinternetaccess.com:1197 (Name or service not known) Tue Mar 13 21:47:42 2018 Could not determine IPv4/IPv6 protocol Tue Mar 13 21:47:42 2018 SIGHUP[soft,init_instance] received, process restarting I have tried all the different .opvn files available by PIA, putting in the default DNS values and retyping my password and username, but nothing works When i turn the vpn off everything works fine. Can anyone help me? EDIT: Update fixed it