Jump to content

I have been using a software called LanCache to setup a steam cache, and I cannot connect to my server. I have set the DNS on my PC to the server's IP address which is static, but when I run NSlookup I get this:

Spoiler

(Me)>nslookup cache.steamcache.lancache.net

Server:  UnKnown
Address:  10.0.0.254

*** UnKnown can't find cache.steamcache.lancache.net: No response from server

It does find the correct IP address, but it won't work.

Link to comment
https://linustechtips.com/topic/1196215-lancache-issues/
Share on other sites

Link to post
Share on other sites

2 minutes ago, TinsellyCone241 said:

I have been using a software called LanCache to setup a steam cache, and I cannot connect to my server. I have set the DNS on my PC to the server's IP address which is static, but when I run NSlookup I get this:

  Hide contents

(Me)>nslookup cache.steamcache.lancache.net

Server:  UnKnown
Address:  10.0.0.254

*** UnKnown can't find cache.steamcache.lancache.net: No response from server

It does find the correct IP address, but it won't work.

Well your computer is still trying to use 10.0.0.254 for DNS, isn’t the server’s IP 10.0.0.253 now?

Looking to buy GTX690, other multi-GPU cards, or single-slot graphics cards: 

 

Link to comment
https://linustechtips.com/topic/1196215-lancache-issues/#findComment-13615082
Share on other sites

Link to post
Share on other sites

2 minutes ago, brwainer said:

Well your computer is still trying to use 10.0.0.254 for DNS, isn’t the server’s IP 10.0.0.253 now?

No, 253 would be dynamic because its in the DHCP range. The server's IP was 255 but then we put it to 254 so it would work.

Link to comment
https://linustechtips.com/topic/1196215-lancache-issues/#findComment-13615085
Share on other sites

Link to post
Share on other sites

4 minutes ago, TinsellyCone241 said:

No, 253 would be dynamic because its in the DHCP range.

Sorry I went back to the other thread and reread. I forgot. 
So we made sure the server is on the right IP. At this point I can think of two things:

-firewall on the server is blocking all inbound connections - need to allow in UDP/53

-docker network config is incorrect, need to make sure that port 53 on the host is being passed to port 53 of the container. This is basically the same as port forwarding on a router.

I don’t have enough experience to give you exact instructions on either of these.

 

Edit: also, make sure you can ping the server from the computer. Note that linux default firewall allows incoming pings, windows default firewall does not. So if you make no firewall changes, you can ping from a windows computer to a linux one but not vice-versa.

Looking to buy GTX690, other multi-GPU cards, or single-slot graphics cards: 

 

Link to comment
https://linustechtips.com/topic/1196215-lancache-issues/#findComment-13615090
Share on other sites

Link to post
Share on other sites

1 minute ago, brwainer said:

Sorry I went back to the other thread and reread. I forgot. 
So we made sure the server is on the right IP. At this point I can think of two things:

-firewall on the server is blocking all inbound connections - need to allow in UDP/53

-docker network config is incorrect, need to make sure that port 53 on the host is being passed to port 53 of the container. This is basically the same as port forwarding on a router.

I don’t have enough experience to give you exact instructions on either of these.

No problem. I don't really use Linux much, but I think the firewall is off.

Firewall Settings.png

Link to comment
https://linustechtips.com/topic/1196215-lancache-issues/#findComment-13615114
Share on other sites

Link to post
Share on other sites

1 hour ago, brwainer said:

Sorry I went back to the other thread and reread. I forgot. 
So we made sure the server is on the right IP. At this point I can think of two things:

-firewall on the server is blocking all inbound connections - need to allow in UDP/53

-docker network config is incorrect, need to make sure that port 53 on the host is being passed to port 53 of the container. This is basically the same as port forwarding on a router.

I don’t have enough experience to give you exact instructions on either of these.

 

Edit: also, make sure you can ping the server from the computer. Note that linux default firewall allows incoming pings, windows default firewall does not. So if you make no firewall changes, you can ping from a windows computer to a linux one but not vice-versa.

I have played around a bit and done some research but I can't really find much on how to pass through ports to docker. If you could find like a video or article on how to do this, I will do my best to follow it. I will keep looking.

Link to comment
https://linustechtips.com/topic/1196215-lancache-issues/#findComment-13615299
Share on other sites

Link to post
Share on other sites

10 hours ago, TinsellyCone241 said:

I have played around a bit and done some research but I can't really find much on how to pass through ports to docker. If you could find like a video or article on how to do this, I will do my best to follow it. I will keep looking.

I’m pretty sure its in the command when you create the container. For example:

Quote

docker run --name lancache-dns -p 10.0.0.2:53:53/udp -e USE_GENERIC_CACHE=true -e LANCACHE_IP=10.0.0.3 lancachenet/lancache-dns:latest

Would pass 10.0.0.2 (replace with the host’s actual IP) port 53 to port 53 of the container. 

Looking to buy GTX690, other multi-GPU cards, or single-slot graphics cards: 

 

Link to comment
https://linustechtips.com/topic/1196215-lancache-issues/#findComment-13617344
Share on other sites

Link to post
Share on other sites

2 hours ago, brwainer said:

I’m pretty sure its in the command when you create the container. For example:

Would pass 10.0.0.2 (replace with the host’s actual IP) port 53 to port 53 of the container. 

I did not use a command such as this. I just installed docker via Git, edited the config files with a nano command, and used "docker-compose up -d" to start lancache. Then it ran a ton of scripts and stuff. I just did what was in this video.

Link to comment
https://linustechtips.com/topic/1196215-lancache-issues/#findComment-13617677
Share on other sites

Link to post
Share on other sites

2 hours ago, TinsellyCone241 said:

I did not use a command such as this. I just installed docker via Git, edited the config files with a nano command, and used "docker-compose up -d" to start lancache. Then it ran a ton of scripts and stuff. I just did what was in this video.

You may not have used a command like that, but it would have been in the scripts that were run. It *should* have included the assignment of udp/53 to the container, but when things aren’t working, I trust nothing. 

Looking to buy GTX690, other multi-GPU cards, or single-slot graphics cards: 

 

Link to comment
https://linustechtips.com/topic/1196215-lancache-issues/#findComment-13617954
Share on other sites

Link to post
Share on other sites

1 hour ago, Sehaj (Linus & Nicky V. F) said:

Hi guys so I really wanted to get a NAS but the only problem is I am not able to justify its cost bcos the only use I have is that I am going to use it as a steam cache, is there any other use u guys can think of ?

 

If your budget is that strict, how many computers do you have the same game installed on? a Steam cache may be pointless for you....

Spoiler

Desktop: Ryzen9 5950X | ASUS ROG Crosshair VIII Hero (Wifi) | EVGA RTX 3080Ti FTW3 | 32GB (2x16GB) Corsair Dominator Platinum RGB Pro 3600Mhz | EKWB EK-AIO 360D-RGB | EKWB EK-Vardar RGB Fans | 1TB Samsung 980 Pro, 4TB Samsung 980 Pro | Corsair 5000D Airflow | Corsair HX850 Platinum PSU | Asus ROG 42" OLED PG42UQ + LG 32" 32GK850G Monitor | Roccat Vulcan TKL Pro Keyboard | Logitech G Pro X Superlight  | MicroLab Solo 7C Speakers | Audio-Technica ATH-M50xBT2 LE Headphones | TC-Helicon GoXLR | Audio-Technica AT2035 | LTT Desk Mat | XBOX-X Controller | Windows 11 Pro

 

Spoiler

Server: Fractal Design Define R6 | Ryzen 3950x | ASRock X570 Taichi | Asus RTX 4060 Dual OC | 64GB (4x16GB) Corsair Vengeance LPX 3000Mhz | Corsair RM850v2 PSU | Fractal S36 Triple AIO + 4 Additional Venturi 120mm Fans | 8 x 20TB Seagate Exos X22 | 4 x 16TB Seagate Exos X18 | 3 x 2TB Samsung 970 Evo Plus NVMe | LSI 9211-8i HBA

 

Spoiler

NAS: Innovision 4U 24-bay chassis (12GB MiniHD SGIO Backplane) | Intel Core i9-10980xe | EVGA X299 FTW-K | EVGA RTX 2080Ti Super FTW3 | 128GB (8x16GB) Corsair Vengeance LPX 3200Mhz | DEEPCOOL PN1000M PSU| Noctua NH-D12L Chromax Black | 16 x 16TB Seagate Exos X18 | 2 x 2TB Samsung 990 Pro | 2 x 2TB Intel U.2 P4510 | LSI 9305-24i HBA

 

Link to comment
https://linustechtips.com/topic/1196215-lancache-issues/#findComment-13618060
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×