
08-13-2010, 12:42 AM
|
|
Junior Guru
|
|
Join Date: Apr 2006
Posts: 175
|
|
[Very Urgent] OVH Failover IPs failed to work. Need expert advice/help
Ok guys I'll explain the situation and hope some pro could help me.
My OVH server (or maybe the main IP) was banned by rapidshare.com to login. Then i try to use the failover IPs. All of them ' seems to be' ban too.
Rapidshare somehow know I'm using the same server regardless of how many IPs i'd changed on that server?? Yes? Maybe?
What I discovered:
I followed this instruction here to use the xxxxx.128.9x IP (one of the extra failover IP) as a proxy
http://www.blackhatworld.com/blackha...effective.html (ssh tunneling)
I'm 100% sure I added xxxxx.128.9x to be used
But when i start using it and and check my ip using http://www.ip-adress.com/
It actually shows xxxxx.81.2x (the main IP) instead. Is that the reason why no matter what IP i used i still can't login to RS?
Now now...anyone knows what i can do :/
I'm not very good with all these stuff. But when i think that since reseller of any server can use so many IPs for so many clients, there must be a way for me too.
I'll pay for those who can find me a solution
Last edited by kohkindachi; 08-13-2010 at 12:45 AM.
|

08-13-2010, 02:22 AM
|
|
Junior Guru Wannabe
|
|
Join Date: Nov 2009
Location: The Netherlands
Posts: 59
|
|
Quote:
Originally Posted by kohkindachi
|
Due to the nature of how ip works, new connections will always use the primary ip of the outgoing connection, unless you tell them otherwise, no matter what ip you used to connect to the machine.
|

08-13-2010, 02:51 AM
|
|
WHT Addict
|
|
Join Date: Sep 2006
Posts: 107
|
|
As wijtec said, it doesn't matter which address you connect to your server through, outgoing connections from the server will come from your main IP addres by default.
Depending on the program, you can tell it to bind to a specific IP address and make connections from there. For example, with wget, you'd do "wget --bind-address=xxxxx.128.9x http://website.com/file.zip". I don't know what program you're using to connect to rapidshare, though.
|

08-13-2010, 03:04 AM
|
|
Web Hosting Master
|
|
Join Date: Apr 2009
Posts: 1,320
|
|
Never seen them ban ip address before, what are you doing causing them to block your ip? Are you doing something that consider breaking their TOS? Maybe stop that activity and ask them to remove the block.
|

08-13-2010, 03:08 AM
|
|
WHT Addict
|
|
Join Date: Sep 2006
Posts: 107
|
|
Actually, after rereading your post, I realized you aren't using any program on your server (like wget), you're just using an ssh tunnel, right? Perhaps you could try something like this
Code:
route add -net 195.122.131.0 gw GATEWAY netmask 255.255.255.0 dev INTERFACE
Replace GATEWAY with the default gateway for your server, which can be found by running "route" and looking at the gateway entry next to the "default" destination. Replace INTERFACE with whichever interface has the IP address you wish to use to connect to rapidshare, such as eth0:0. This would make your server route all traffic to rapidshare.com's subnet (195.122.131.0) though the interface you specified, and traffic going through the SSH tunnel should also be routed in the same way.
|

08-13-2010, 03:26 AM
|
|
Web Hosting Master
|
|
Join Date: Apr 2009
Posts: 1,320
|
|
I think his site is rapid8 it fetch files from sites like rapidshare for people to download from. Will need to know how your script is fetching files to get around the ip blocks.
|

08-13-2010, 05:02 AM
|
|
WHT Addict
|
|
Join Date: Jan 2004
Posts: 147
|
|
you should use snat then.
iptables -t nat -A POSTROUTING -d xxx.xxx.xxx.xxx/yy -j SNAT --to-source nnn.nnn.nnn.nnn
replace xxx.xxx.xxx.xxx/yy with the destination host/subnet (ex: 195.122.131.0/24) and nnn.nnn.nnn.nnn with your failover IP.
this will make the box to perform source nat sending all packets to xxx.xxx.xxx.xxx/yy from the nnn.nnn.nnn.nnn address.
cheers,
--nvieira
|

08-13-2010, 07:45 AM
|
|
Junior Guru
|
|
Join Date: Apr 2006
Posts: 175
|
|
Hey guys (1) basically I'm just logging into RS using script with cURL (Let's talk not about how it got ban...first ok  )
(2) The reason why I used ssh tunneling is to test whether login is really banned or not, using all those IPs. To my surprise, even though I set the failover IP to be used, it's still being banned. Checking IP ADDRESS again on some site, realise that it's showing the old IP (believe the FO IP only redirects)
(3) Someone talked about gateway in OVH forum too. But didn't elaborate how can i do it  Can someone show me step by step ot help me(paying)?
Thanks
Last edited by kohkindachi; 08-13-2010 at 07:57 AM.
|

08-13-2010, 07:48 AM
|
|
Junior Guru
|
|
Join Date: Apr 2006
Posts: 175
|
|
@ nvieira and TarballX. Is there a way to make this FO IP works for all destinations and not RS only? Will vir machince works?
Last edited by kohkindachi; 08-13-2010 at 07:51 AM.
|

08-13-2010, 08:12 AM
|
|
Junior Guru
|
|
Join Date: Apr 2006
Posts: 175
|
|
[root@nsxxxx7 ~]# route add -net 195.122.131.0 gw rbx-22-gw.route netmask 255.255.255.0 dev eth0:0
rbx-22-gw.route: Unknown host
|

08-13-2010, 08:22 AM
|
|
Junior Guru Wannabe
|
|
Join Date: Nov 2009
Location: The Netherlands
Posts: 59
|
|
Quote:
Originally Posted by kohkindachi
[root@nsxxxx7 ~]# route add -net 195.122.131.0 gw rbx-22-gw.route netmask 255.255.255.0 dev eth0:0
rbx-22-gw.route: Unknown host
|
That's not your default gw, try finding it out with "route -n"
|

08-13-2010, 08:28 AM
|
|
Junior Guru
|
|
Join Date: Apr 2006
Posts: 175
|
|
Oh GREAT.... TarballX method works 
and thanks wijtec for telling me the correct gateway
One more question, how do i edit or remove this entry?
|

08-13-2010, 08:41 AM
|
|
Junior Guru Wannabe
|
|
Join Date: Nov 2009
Location: The Netherlands
Posts: 59
|
|
Quote:
Originally Posted by kohkindachi
Oh GREAT.... TarballX method works 
and thanks wijtec for telling me the correct gateway
One more question, how do i edit or remove this entry?
|
replace add with del
|

08-13-2010, 09:47 AM
|
|
/me dawns tinfoil hat
|
|
Join Date: Jul 2004
Location: Scottsbluff, NE
Posts: 1,963
|
|
This thread has warez written all over it.
|

08-13-2010, 09:46 PM
|
|
Junior Guru
|
|
Join Date: Apr 2006
Posts: 175
|
|
Hey guys this problem has not been solved 100%. Can someone PM me your MSN? i'll pay for your help
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
| Postbit Selector |
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
|
|
| Login: |
|
|
| Advertisement: |
|
|
| Web Hosting News: |
|
|
|