LAN cannot access DMZ client
-
@viragomann
Thanks for super quick answer"Can you access the internet from the DMZ?"
If I setup HAproxy to forward traffic to services on the server it works just fine from WAN. It is a docker server so it has at least before had no problem accessing the internet pulling images. I have no way of checking quickly at the moment since I have no clients on that net. Will do ASAP though."If internet access works on the DMZ device check its firewall. Maybe it's blocking outside access."
Its a Debian docker server so no FW on it (AFAIK)"check the network settings on both, pfSense DMZ interface and the device."
Haven't changed it, but I would say it looks right in PfSense, no?Thanks for answering:
"For your two DMZ rules:"
You're correct, I've been messing around quite a bit. However they should also not hinder communications right?"I'd also suspect the firewall on the DMZ server."
The DMZ server is a Debian Docker server and I can access things on it just fine If I setup HAproxy to forward traffic from WAN to it. Also. Has been working for well over half a year. So I do not think that can be an issue. Would make sense though. -
@werkstrom said in LAN cannot access DMZ client:
I have no way of checking quickly at the moment since I have no clients on that net. Will do ASAP though.
To get access to the device you can add an outbound NAT rule to the DMZ interface (masquerading) for the source of LAN network on pfSense for the time being.
-
@werkstrom said in LAN cannot access DMZ client:
"For your two DMZ rules:"
You're correct, I've been messing around quite a bit. However they should also not hinder communications right?Right. Rules for an interface only affect traffic arriving on that interface. If the packet from LAN was allowed then the response would be allowed because pfSense is a stateful firewall.
You make a top rule on LAN to allow from LAN Net to the DMZ server IP and that would confirm the packets are being allowed (when the counter increases). But that should be allowed now anyway.
The reason we asked about the firewall is because it's a frequent post/answer that the firewall on the server is set to allow inbound from the local subnet and not the Internet. In Windows for instance changing the network from a private network to a public network, or vice versa, changes the firewall ruleset. As viragomann mentioned "HAproxy uses the DMZ address to connect to the backend device" so the traffic is arriving on that server from the DMZ interface IP, ergo packets come from within its own subnet.
Though I see you mention it does not have any sort of firewall on it. Does it have a gateway set in its network config?
-
HAproxy/ping on DMZ:
Aha... That eluded me. I apologize, but now I understand what you meant. Makes perfect sense then, thanks for explaining."outbound NAT rule to the DMZ interface"
Don't really understand how to set that up, and I have pulled out a switch and some cables to connect to the DMZ directly. I get your point though, good idea. Thanks."Does it have a gateway set in its network config?"
It should have, it worked fine this way this morning. Now, I cannot guarantee it as I have not been able to access it yet... Would make sense but again, nothing I know of has happened with it (not saying it still hasn't ;) ) -
@werkstrom said in LAN cannot access DMZ client:
"outbound NAT rule to the DMZ interface"
Don't really understand how to set that up, and I have pulled out a switch and some cables to connect to the DMZ directly. I get your point though, good idea. Thanks.Firewall > NAT > Outbound
Enable the hybrid mode, save that and add a rule:
inteface; DMZ
source: LAN subnet
destination: any
translation: interface address -
You guys are awesome. Thank you. :-)
OK, so I can now ping from my LAN ... And SSH to it...
Trying to start one of the Docker images I get an error indicating it cannot access internet (and download).
Checking network config things look allright to me:
cat /etc/resolv.conf
10.11.12.1DNS is the DMZ interface as excpected (right?)
-
@werkstrom
Hmmm. Looks well.Do you have a firewall rule on pfSense allowing internet access?
Can you ping the DMZ and LAN IP of pfSense. Ensure to have a rule, which permit it.
-
@viragomann
I hooked up a switch and a laptop to the DMZ.
Laptop got IP config nicely using DHCP
Laptop can access Internet...From Server, Pinging DMZ IP = OK
From server, Pinging the LAN IP = OK
From Server, Pinging 216.58.211.14 (google.com) = OK
From Server, Pinging google.com = OK
-
@werkstrom said in LAN cannot access DMZ client:
Trying to start one of the Docker images I get an error indicating it cannot access internet (and download).
From inside the container or when pulling an image.
Docker has a separate subnet and this is natted to the machines IP.So since you have internet access, the network settings might be ok. Also outbound NAT on pfSense might be working properly.
For enabling access from LAN without masquerading check its firewall settings. -
@viragomann
I now removed the NAT rule you so kindly helped with.... And... Everything still works...
Now... I - do - not - get - it ....
I did physically change the cat6 cables and added a switch for the DMZ, but I never switched off the FW or the Server...
I also removed two disabled rules on the DMZ (should have zero effect)There were several services on the server that didn't start. They now start flawlessly
I use Portainer to administer several docker servers. Portainer worked for all except my DMZ until you kindly helped with the NAT setup. Now it works just fine without it...
I tried from three separate computers and my phone on the LAN before. They all had the same issue. They now all can access the services on the DMZ server...
I cannot see what I have done to fix this issue.
-
@viragomann @SteveITS
Very grateful for your kind assistance. Thank you so much.
I'll try to backtrack and see if the issue resurfaces and then be a bit more alert and try to isolate it. Again, thank you so much...PS. As an anecdote. In 1999 I was leading a development effort to replace an old S/36 system with a SQL server based one. During development we had a huge issue for some weeks where SQL queries didn't return all rows they should. One evening I was staying late and by chance saw a bent network cable for the SQL server. I switched it for a new one and went home for the night. Next morning suddenly we got the full number of rows from our queries... After some debate we switched back to the old network cable and ... The error returned. A number of switches back and forth later we were absolutely sure the cable did in fact cause this strange problem. So what I'm trying to say is that even though everyone is 100% sure something cannot impact something in a certain manner... It still can... Sometimes... Computers work in mysterious ways... And I did in fact change the network cable... DS
-
@werkstrom
Strange. The network cable can for sure be a reason for some weird behavior. But this one, access through HAproxy succeed, but from other subnet doesn't...