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
-
Hazarth94863yNot sure what you mean. You're running some sort of public network?
Could you give use cases and examples? -
Xoka12803y@Hazarth Like https://phantombuster.com/
An automation platform that automates other platforms for you.
We don't want other platforms to block our server IP address so we want to dedicate each of our users an IP/Proxy. -
atheist99043y@Xoka how are you running? Aws? Each ec2 instance has its own ip address (ish), but check their tos (that might count as abuse). VPNs can provide dedicated ip address, but are not free. The simplest option might be to run from a users ip address, ie download your code and run on their computer (easy if it's javascript), but make sure there's nothing sensitive.
-
You asked "best way to do it with python"
I don't thinks that the right question.
Setting ip isn't something you do in programming. You pretty much gotta run 1 sever per ip is my guess...programming agnostic - more of a Devops problem -
So you need your server to appear as multiple separate servers to the external services you're connecting to?
Sounds like you want to become a local Internet registry, lol. -
Xoka12803y@molaram someone else already done it in our team :D So, I thought, I'd rather ask here
-
Xoka12803y@melezorus34 Not specifically. but I also dont want users ip to get exposed easily while automating their things
-
Xoka12803y@electrineer lol! I dont want my server to appear as different servers but I just want to hide my server ip address so that our server IP doesnt get banned
-
Hi, disclaimer: I'm a noob
On AWS you can get a bunch of public IP addresses (how? at what cost? [0]), attach them to different network interfaces (how?) on an instance, then bind different sockets to use different interfaces on the machine, and script accordingly
[0]: https://aws.amazon.com/about-aws/... -
Xoka12803y@melezorus34 actually, even I'm not 100% sure what we're gonna do yet but one of the senior devs said, he's found a solution 🤔
Related Rants
Hello, I'm kinda stuck in this problem: Lets say, I want to give each of my users a dedicated IP address. How do I do it? & what's the best way to do it with python?
No need to share code, just some instructions/guideline would perfect. Thanks in advance.
question
how
dedicated ip
stuck