-
-
Notifications
You must be signed in to change notification settings - Fork 194
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
[FEATURE] IP Rotation on local IPv6 Subnet #60
Comments
Can you explain how your expectations were when used as an illustration, @BackInBash? |
If indeed:
If it's the second situation from the above, it should now be possible for you to add it to the proxy pool for random use. Maybe I still don't understand how your point of view is to use the local subnet as a proxy, such as what input mubeng needs to choose IPv6(?). It would be even more efficient if it didn't require (break) changes in the core. |
Not as proxy. The proxy server should use the ip pool and randomly select an ip address as its outgoing request ip. |
Ok then,
|
No input the only thing you should need in my opinion is a on off switch (bool).
On Windows it looks like this:
C:\Users\BackInBash>route print
===========================================================================
Interface List
20...00 00 00 00 00 00 ......Intel(R) I211 Gigabit Network Connection
28...00 00 00 00 00 00 ......VirtualBox Host-Only Ethernet Adapter
1...........................Software Loopback Interface 1
23...00 00 00 00 00 00 ......Hyper-V Virtual Ethernet Adapter
===========================================================================
IPv6 Route Table
===========================================================================
Active Routes:
If Metric Network Destination Gateway
20 281 ::/0 fe80::464e:6dff:fe40:810b
1 331 ::1/128 On-link
1 331 ff00::/8 On-link
28 281 ff00::/8 On-link
20 281 ff00::/8 On-link
23 5256 ff00::/8 On-link
===========================================================================
Persistent Routes:
None To get the IPv6 Subnet from an Interface: Get-NetIPAddress -InterfaceIndex 20 -AddressFamily IPv6 | Select-Object -Property IPAddress,PrefixLength On Linux: BackInBash@yellow:/$ ip -6 route show
default via fe80::1 dev eth0 proto kernel metric 1024 onlink pref medium To get the IPv6 Subnet from an Interface ip -o -f inet6 addr show | awk '/scope global/ {print $4}' So
Here are some example random ipv6 generators: |
But route scope (*nix) is configured by system (administrator), @BackInBash. Thoughts? |
Read-only operations should be able to be performed without admin privileges. |
It would be cool to use the local IPv6 Subnet for the IP rotating feature instead of external proxy servers.
The text was updated successfully, but these errors were encountered: