this post was submitted on 17 Sep 2023
776 points (97.8% liked)

Programmer Humor

31230 readers
565 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 4 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 16 points 9 months ago (3 children)

Noob question. Would that request travel over the internet or is it resolved locally?

[–] [email protected] 14 points 9 months ago

If the router supports hairpinning, the IP request can be resolved locally.

The domain name lookup would be a different issue and could potentially need to be resolved externally, but the router's DNS cache should be able to answer eventually.

[–] [email protected] 12 points 9 months ago (1 children)

Depends. If the zone responsible for whatever resolves to that IP is hosted locally - then DNS request would stay local.

If the service behind that IP is running locally - then all traffic would stay local. Network stack would be smart enough to not run circles to find itself.

[–] [email protected] 2 points 9 months ago (2 children)

Yeah, the router ought to know that public IP belongs to a device in its own network unless you're doing stuff like running your own router behind an ISP provided router and just forwarding ports instead of maintaining IP assignment / routing tables

[–] dot20 1 points 9 months ago

I think OP is referring to NAT hairpinning though.

[–] [email protected] 1 points 9 months ago

Tell that to my opnsense box that refuses to NAT mirror.

[–] ArtVandelay -3 points 9 months ago (1 children)

That's a WAN IP, so it would be resolved by external DNS then routed back

[–] [email protected] 13 points 9 months ago (2 children)

Why are you mentioning dns? This is an ip request, no need to contact a dns server

[–] [email protected] 3 points 9 months ago (1 children)

Because the title mentions having a domain, I guess.

[–] ArtVandelay 4 points 9 months ago* (last edited 9 months ago)

Yes, that was the train of thought I was on. I equated "find" to "resolve" and I've been dutifully chastised.

[–] [email protected] 2 points 9 months ago

Yeah no need for DNS but an ARP lookup would be in order.