Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@zemaitis oh, I indeed thought that's a joke :o
since now I see it's not -- you cannot exposr your lan ip to the world. It's just not possible.
What you COULD do to "hide" your IP is to use some proxy server or a vpn as a proxy. That way the outside world would see your proxy's address, not you actual ext ip**.
** the proxy host will still see your actual IP. But since you delegate all your calls to the proxy, the rest of the world will "think" it's the proxy server making those calls. -
There is no way to do this on IP level because e.g. 192.168.1.113 is a private network IP, and external routers will not even forward that.
-
@netikras and it's still possible that the actual ip leaks if some program decides to leak it
-
Well. It is possible.
But don't expect any replies, and you risk your ISP blocking your account!
Do not try this at home:
Any decent firewall on the edge router can do a simple sourcea ddress override with a packet mangle op. -
@magicMirror Even if you did that - how would the other side be able to reply, given that private network IPs have no public routing?
-
Wack63115yYou could use a VPS you controll as gateway and Route all your traffic through it using either openVPN or in Linux simple SSH. Note however the public IP of that VPS will be known.
-
@netikras
read this:
https://mellowhost.com/blog/...
I did not say it is a good idea, or that it will work. because it won't. but you can spoof the source ip. -
@magicMirror overwriting src_ip field in an outgoing ip packet? I doubt it would pass through ISP's infra. Even to the outside..
-
@magicMirror I thought a joke was that the receiver will not know where to return the package 😁 [mirror attack?]
anyway, the "joke" will not "show" the custom ip as OP asked for as the package won't get out far -
@netikras But not all ISP drop outgoing packets based on weird source IPs.
So... it is possible that the target server will get the packets. It just will not be able to send a reponse back.
And this is called an "amplification" attack, done on the spoofed Ip, with the idea to ddos it. And thats why most ISPs will drop the packets.
Related Rants
my ISP provides me an external IP address. what is the easiest way to hide that external IP and show only my local ip lets say 192.168.1.113 to the outside world?
rant
question