#Is there a way to bind Discord authentication to a specific IP?

1 messages · Page 1 of 1 (latest)

graceful glade
#

Hey everyone. I have multiple IPs on my machine but every IP except one of my IPs are rate limited by Discord thus users cannot link their Discord. How can I make it so it binds to a specific IP instead of using one of my rate limited IPs? Thanks.

brisk ledge
#

how do you manage to get rate limited by discord

#

lol

formal oyster
#

Host ctrlpanel on another ip

graceful glade
graceful glade
formal oyster
pseudo briar
# graceful glade 1. how??? do you mean like another machine? 2. how do i know which ip ctrlpanel ...

The easy way:
Use a diffrent physical system or VM

The bit harder way:
Use docker host ctrlpanel within that and bind the container to your decired IP

The hard way:
Mark outgoing packages via iptables and route them onto the right IP
THIS IS A EXAMPLE AND DEFENTLY NEEDS AJUSTING

iptables -t mangle -A OUTPUT -p tcp --sport <80/443> -m owner --uid-owner <Your Webuser Username> -j MARK --set-mark 1
iptables -t nat -A POSTROUTING -o <Interface Name where the IP is bound> -m mark --mark 1 -j SNAT --to-source <Public ip>