-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support multiple IPs on the server #19
Comments
Interesting use case! I think this could be accomplished by getting the local address with |
The new outline-ss-server/service/tcp.go Line 258 in 264ddf9
UDP should be doable too. |
There's a difficulty in this situation:
So we should check if the IP version of the target matches the IP version of the client. If it matches, we can use the IP the client connected to. Otherwise use whatever the system picks for you. |
Hi
I have many ip of one interface card(Centos 7) as like below
eth0 10.10.10.10
eth0:0 10.10.10.11
eth0:1 10.10.10.12
eth0:2 10.10.10.13
but, if i connect 10.10.10.12 then all packet's are output on 10.10.10.10, not 10.10.10.12
how can i output packet to client request ip (of request port)
ex)
8081 port 10.10.10.11 <-> client A
8082 port 10.10.10.12 <-> client B
8083 port 10.10.10.13 <-> client C
Thanks
The text was updated successfully, but these errors were encountered: