hosted by liquidweb


Go Back   Web Hosting Talk : Advertising Forums : Employment Offers & Requests : Systems Management Requests : [Very Urgent] OVH Failover IPs failed to work. Need expert advice/help
Reply

Systems Management Requests Server management forum where you can request help in IIS, Apache, SQL and much more, request them here. If you seek server management or other management services, request them here.
Forum Jump

[Very Urgent] OVH Failover IPs failed to work. Need expert advice/help

Reply Post New Thread In Systems Management Requests Subscription
 
Send news tip View All Posts Thread Tools Search this Thread Display Modes
  #1  
Old 08-13-2010, 12:42 AM
kohkindachi kohkindachi is offline
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.
Reply With Quote
Sponsored Links
  #2  
Old 08-13-2010, 02:22 AM
wijtec wijtec is offline
Junior Guru Wannabe
 
Join Date: Nov 2009
Location: The Netherlands
Posts: 59
Quote:
Originally Posted by kohkindachi View Post
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
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.

__________________
High end VPS and dedicated services in The Netherlands http://www.wijtec.com

Reply With Quote
  #3  
Old 08-13-2010, 02:51 AM
TarballX TarballX is offline
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.

Reply With Quote
Sponsored Links
  #4  
Old 08-13-2010, 03:04 AM
chasebug chasebug is offline
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.

Reply With Quote
  #5  
Old 08-13-2010, 03:08 AM
TarballX TarballX is offline
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.

Reply With Quote
  #6  
Old 08-13-2010, 03:26 AM
chasebug chasebug is offline
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.

Reply With Quote
  #7  
Old 08-13-2010, 05:02 AM
nvieira nvieira is offline
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

Reply With Quote
  #8  
Old 08-13-2010, 07:45 AM
kohkindachi kohkindachi is offline
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.
Reply With Quote
  #9  
Old 08-13-2010, 07:48 AM
kohkindachi kohkindachi is offline
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.
Reply With Quote
  #10  
Old 08-13-2010, 08:12 AM
kohkindachi kohkindachi is offline
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

Reply With Quote
  #11  
Old 08-13-2010, 08:22 AM
wijtec wijtec is offline
Junior Guru Wannabe
 
Join Date: Nov 2009
Location: The Netherlands
Posts: 59
Quote:
Originally Posted by kohkindachi View Post
[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"

__________________
High end VPS and dedicated services in The Netherlands http://www.wijtec.com

Reply With Quote
  #12  
Old 08-13-2010, 08:28 AM
kohkindachi kohkindachi is offline
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?

Reply With Quote
  #13  
Old 08-13-2010, 08:41 AM
wijtec wijtec is offline
Junior Guru Wannabe
 
Join Date: Nov 2009
Location: The Netherlands
Posts: 59
Quote:
Originally Posted by kohkindachi View Post
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

__________________
High end VPS and dedicated services in The Netherlands http://www.wijtec.com

Reply With Quote
  #14  
Old 08-13-2010, 09:47 AM
Mr. Obvious Mr. Obvious is offline
/me dawns tinfoil hat
 
Join Date: Jul 2004
Location: Scottsbluff, NE
Posts: 1,963
This thread has warez written all over it.

Reply With Quote
  #15  
Old 08-13-2010, 09:46 PM
kohkindachi kohkindachi is offline
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

Reply With Quote
Reply

Similar Threads
Thread Thread Starter Forum Replies Last Post
OVH servers + only now 4 extra IPs for FREE /i7 920/8GB DDR3/2 x 1TB/ 66.99 GBP bartol Dedicated Hosting Offers 4 03-24-2010 05:20 PM
httpd failed... Urgent lovelynetworks Hosting Security and Technology 5 12-26-2006 07:36 AM
Need some urgent help..RAID 5 failed.. yongsan Hosting Security and Technology 3 08-02-2006 11:35 PM
Windows Tomcat Expert needed for Urgent work USA-hosting Employment / Job Offers 3 06-11-2004 11:28 AM
Urgent !!!- Apache failed dxer Hosting Security and Technology 8 02-25-2003 02:51 AM

Related posts from TheWhir.com
Title Type Date Posted
StorageCraft Technology Launches Cloud Services in US, Canada Web Hosting News 2013-05-03 13:29:52
Canadian Web Hosting Launches Cloud Shared Hosting Based on VMware Web Hosting News 2013-01-09 15:03:58
50d2517d-023c-458a-a01f-561145a79962 Listing 2013-03-05 18:24:14
Web Host FireHost Expands Business Continuity Solutions Web Hosting News 2012-08-15 15:58:31
WHD 2012 - Legal Lessons for Web Hosts from the Megaupload.com Indictment Web Hosting News 2012-03-27 14:49:09


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes
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

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump
Login:
Log in with your username and password
Username:
Password:



Forgot Password?
Advertisement:
Web Hosting News:



 

X

Welcome to WebHostingTalk.com

Create your username to jump into the discussion!

WebHostingTalk.com is the largest, most influentual web hosting community on the Internet. Join us by filling in the form below.


(4 digit year)

Already a member?