redundant wan

  • Thread starter Thread starter archie
  • Start date Start date
A

archie

We have two connections to the internet (1 T1 and 1 DSL) setup for redundancy
purposes on a router with 2 wan ports. These connections both have their own
pool of IP addresses. Our name resolution is setup to point to IP addresses
bound to the T1. We recently had a situation where our T1 went down and we
had to disable that WAN port on our router until it was available again. In
this process we found that we needed to setup a second ftp subdomain
(ftp2.mydomain.com) and tell our customers to use that name.

My question is how can we make it so that we don't have to notify our
customers to use the other subdomain should this happen again without having
to make dns changes. In other words, if ftp.mydomain.com is bound to our T1
on 65.1.1.1 and out T1 goes down, what would we need to do to make sure
ftp.mydomain.com goes through our DSL line bound to 64.1.1.1 (IP addresses
are not real, just examples).

Would we need to change our topology, or is there a way to set a secondary
IP or route for our dns names? Any feedback is much appreciated.

Thanks,
Marc
 
From: "archie" <archie@discussions.microsoft.com>

| We have two connections to the internet (1 T1 and 1 DSL) setup for redundancy
| purposes on a router with 2 wan ports. These connections both have their own
| pool of IP addresses. Our name resolution is setup to point to IP addresses
| bound to the T1. We recently had a situation where our T1 went down and we
| had to disable that WAN port on our router until it was available again. In
| this process we found that we needed to setup a second ftp subdomain
| (ftp2.mydomain.com) and tell our customers to use that name.
|
| My question is how can we make it so that we don't have to notify our
| customers to use the other subdomain should this happen again without having
| to make dns changes. In other words, if ftp.mydomain.com is bound to our T1
| on 65.1.1.1 and out T1 goes down, what would we need to do to make sure
| ftp.mydomain.com goes through our DSL line bound to 64.1.1.1 (IP addresses
| are not real, just examples).
|
| Would we need to change our topology, or is there a way to set a secondary
| IP or route for our dns names? Any feedback is much appreciated.
|
| Thanks,
| Marc

This is a networking question, not a security question.
Plaese ask in a networking or router based news group.

Off the bat, I'd say you need a Router with with two WAN ports.

--
Dave
http://www.claymania.com/removal-trojan-adware.html
Multi-AV - http://www.pctipp.ch/downloads/dl/35905.asp
 
First and foremost, your FTP server should be on an IP address (space) which
sits *behind* the T1 and ADSL links, not on the same address space as the
actual link addresses (which are typically point to point, /30s). You then
advertise (using BGP or static routes - on the ISP side) the FTP server IP
address across both links, one of them preferred, the other one - backup.
The provider will use the preferred link.

I guess the problem you are having is that you are advertising using BGP (or
your ISP is doing this) your IP address space 64.1.1.1 on the T1 link but
not on the ADSL link when you WAN link is down, clients no longer know how
to reach the address space, advertisied on the T1. Assuming that this is the
same ISP, you can ask them to put a floatign static route for your FTP
server's IP address space to your ADSL port (which they are unlikely to do,
as they typically don't do that on ADSL links).

If the T1 and ADSL links are not from the same ISP, it is amazingly complex
to configure routing - you need to understand BGP multihoming, and metric
manipulation to do that, as well as portable and non-portable IP address
spaces... NAT will be rquired as well... So you better not go this way.

--
---
HTH,
Dobromir

Visit http://www.iamechanics.com

"David H. Lipman" <DLipman~nospam~@Verizon.Net> wrote in message
news:usSe38PbIHA.208@TK2MSFTNGP02.phx.gbl...
> From: "David H. Lipman" <DLipman~nospam~@Verizon.Net>
>
> < snip >
>
> |
> | Off the bat, I'd say you need a Router with with two WAN ports.
> |
>
> I forget to mention that two WAN port Router should perform Load
> Balancing.
>
> --
> Dave
> http://www.claymania.com/removal-trojan-adware.html
> Multi-AV - http://www.pctipp.ch/downloads/dl/35905.asp
>
>
 
Back
Top