> ## Documentation Index
> Fetch the complete documentation index at: https://docs.megaport.com/llms.txt
> Use this file to discover all available pages before exploring further.

# MVE Deployment Scenarios

> This help topic describes deployment scenarios for Megaport Virtual Edge (MVE).

export const Image = ({src, alt = '', caption, width, height, shadow}) => {
  const errorPrefix = '\x1b[31;1;4mERROR\x1b[0m: Image -';
  if (typeof src !== 'string') {
    src = String(src);
  }
  if (!src || src === 'undefined') {
    console.error(`${errorPrefix} \`src\` is required — rendering an empty string instead`);
    return <></>;
  }
  const img = <img className={['mega-image-style', shadow ? 'shadow' : ''].join(' ')} src={src} alt={alt} width={width} height={height} style={{
    display: 'block'
  }} />;
  return caption ? <figure>
      {img}
      <figcaption style={{
    textAlign: 'center',
    width
  }}>{caption}</figcaption>
    </figure> : img;
};

This topic describes many, but not all, of the deployment use cases with an SD-WAN partner and Megaport Virtual Edge (MVE).

For all use cases, replacing a single MVE with two MVEs improves network reliability by providing redundancy.

## Branch to branch

This deployment uses the Megaport private software-defined network (SDN) to reduce reliance on the internet and connect enterprise branch locations.

<Image src="/images/mve/branch-to-branch.png" alt="Branch to branch" width={1200} />

## Branch to cloud

This deployment extends the enterprise branch network to one or many cloud resources to enable one seamless network from branch to cloud.

<Image src="/images/mve/branch-to-cloud.png" alt="Branch to cloud" width={700} />

## Branch to data center

This deployment connects the enterprise branch network to the enterprise data center footprint, covering more than 700 Megaport-enabled global data center locations.

<Image src="/images/mve/branch-to-dc.png" alt="Branch to data center" width={700} />

## VPC to VPC

This carrier-neutral deployment connects multiple cloud regions, providers, or accounts for network interoperation, privately.

<Image src="/images/mve/vpc-to-vpc.png" alt="VPC to VPC" width={700} />
