> ## 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 Pricing and Contract Terms

> This help topic describes Megaport Virtual Edge (MVE) billing details.

export const Anchor = ({name}) => {
  const errorPrefix = '\x1b[31;1;4mERROR\x1b[0m: Anchor -';
  if (name === undefined || name === null || name === 'undefined') {
    console.error(`${errorPrefix} \`name\` must have a value — rendering an empty string instead`);
    return <></>;
  }
  const raw = typeof name === 'string' ? name : JSON.stringify(name);
  const id = raw.replace(/\s+/g, '-').replace(/[^A-Za-z0-9_-]/g, '').replace(/-+/g, '-').replace(/^-+|-+$/g, '');
  if (!id) {
    console.error(`${errorPrefix} \`name\` "${name}" sanitizes to an empty id — rendering an empty string instead`);
    return <></>;
  }
  return <a style={{
    scrollMarginTop: 'var(--scroll-mt)'
  }} id={id}></a>;
};

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;
};

export const Link = ({href, children}) => {
  const errorPrefix = '\x1b[31;1;4mERROR\x1b[0m: Link -';
  if (typeof href !== 'string') {
    href = String(href);
  }
  if (!href || href === 'undefined') {
    console.error(`${errorPrefix} the \`href\` property is required — rendering an empty string instead`);
    return <></>;
  }
  if (href.includes('{') || href.toUpperCase().includes('%7B')) {
    console.error(`${errorPrefix} could not resolve a variable in href "${href}" — rendering an empty string instead`);
    return <></>;
  }
  const isExternal = (/^https?:\/\//).test(href);
  return <a href={href} className="link" target={isExternal ? '_blank' : undefined} rel={isExternal ? 'noreferrer' : undefined}>
      {children ?? href}
      {isExternal && <span className="sr-only"> (opens in a new tab)</span>}
    </a>;
};

Megaport charges a recurring monthly flat fee based on the MVE provisioned services consumed hourly in the course of the previous month.

The MVE service is priced by the instance size you select when ordering an MVE. These fixed monthly prices include the MVE, public IP address, and Megaport Internet connectivity. Megaport Internet costs might differ by market. VXCs between MVEs or other resources are billed separately. For more information, see the *Planning Your Deployment* topic for your provider:

* [6WIND](/mve/6wind/plan-deployment)
* [Anapaya](/mve/anapaya/plan-deployment)
* [Aruba](/mve/aruba/plan-deployment)
* [Aviatrix](/mve/aviatrix/plan-deployment)
* [Check Point CloudGuard](/mve/checkpoint/plan-deployment)
* [Cisco](/mve/cisco/plan-deployment)
* [Deciso OPNsense](/mve/deciso/plan-deployment)
* [F5](/mve/f5/plan-deployment)
* [Fortinet](/mve/fortinet/plan-deployment)
* [Juniper](/mve/juniper/plan-deployment)
* [Netskope One SD-WAN](/mve/netskope/plan-deployment)
* [Palo Alto (VM-Series)](/mve/palo-alto/plan-deployment)
* [Palo Alto (Prisma SD-WAN)](/mve/palo-alto/plan-deployment-prisma)
* [Peplink](/mve/peplink/plan-deployment)
* [Versa](/mve/versa/plan-deployment)
* [VMware](/mve/vmware/plan-deployment)

When you deploy an MVE, cost accrual begins immediately. In the Megaport Portal, you can make the following changes to pay-as-you-go or long-term contracts that are on standard pricing:

* **New MVE** -- Select No Minimum Term to pay-as-you-go, or select a 12, 24, 36, 48, or 60-month minimum term, billed monthly. The default term is 12 months. The term starts when you place the order. Longer contract terms have these benefits:

  * Fixed monthly cost.
  * Discounts based on the term duration. For example, a 24-month term has a 5% discount and a 36-month term has a 10% discount.

  See the [MVE Overview](/mve) for SD-WAN vendor-specific details on creating an MVE.

  Enable the [Minimum Term Renewal](/portal-admin/auto-renew/#auto-renew) option for services with a 12, 24, 36, 48 or 60-month term to automatically renew the contract at the same discounted price and term length at the end of the contract. If you don't renew the contract, at the end of the term,  the contract will automatically roll over to month-to-month contract for the following billing period, at the same price, without term discounts.

* **Existing MVE on a minimum term** -- Renew a 12, 24, 36, 48, or 60-month minimum term, extend to a longer term, or shorten the term. You can extend a minimum term at any time; however, you can only shorten it during the last calendar month of the term.

  Enable the [Minimum Term Renewal](/portal-admin/auto-renew/#auto-renew) option for services with a 12, 24, 36, 48 or 60-month term to automatically renew the contract at the same discounted price and term length at the end of the contract. If you don't renew the contract, at the end of the term,  the contract will automatically roll over to month-to-month contract for the following billing period, at the same price, without term discounts.

  For more information about changing a term, see [Changing a contract term](#changing).

* **Existing contract term** -- Upgrade a contract term at any time.

* **Expired MVE term** -- Renew a term contract after it has expired.

<Note>
  To provide adequate time to extend or renew the MVE contract, Megaport will notify you via email 1 month ahead of the term expiration and 1 week before a price change.
</Note>

<Anchor name="changing" />

## Changing a contract term

In the Portal, you can make the following changes:

* Add a term to an MVE.
* Extend the term on an existing MVE contract.
* Renew a term in the final 30 days of an MVE contract, before the term expires.

After changing an existing term, the new term begins immediately.

<Note>
  Not all contract terms can be changed in the Portal (the option will be grayed out). Contact your Megaport Account Manager for more information.
</Note>

**To add, extend, or renew a contract term**

1. In the <Link href="https://portal.megaport.com">Megaport Portal</Link>, go to the **Services** page and locate the MVE you want to change.

2. Click the MVE Details icon.
   <Image src="/images/finance/mve-details.png" alt="MVE Details" shadow={true} width={250} />

3. Review the contract term details for this MVE.
   The End Date and Term length are shown.
   <Image src="/images/finance/mve-change-term.png" alt="MVE Change Contract" shadow={true} width={600} />

4. Click **Change Contract Term** and select the new term for the MVE.

   Enable the [Minimum Term Renewal](/portal-admin/auto-renew/#auto-renew) option for services with a 12, 24, 36, 48 or 60-month term to automatically renew the contract at the same discounted price and term length at the end of the contract. If you don't renew the contract, at the end of the term,  the contract will automatically roll over to month-to-month contract for the following billing period, at the same price, without term discounts.

   <Image src="/images/finance/set-mve-contract-term.png" alt="Set MVE Contract Term" shadow={true} width={600} />

   MVEs that are under a contract term or on pay-as-you-go billing start their new contract term immediately.

5. Select the **I agree to the terms and conditions** check box to indicate you have read and agreed to the Global Services Agreement.

6. Click **Start New Contract Term**.\
   Click **Cancel** to maintain the MVE's current term conditions. If an MVE on a contract term expires, it rolls over to pay-as-you-go billing (at standard pricing, without term discounts).

The Portal accepts the new term at the current standard rate and applies any applicable term discounts at the new term start date. The new term and end date appear on the MVE Details page.

For more information, see [MVE Billing](/finance/mve-billing).

## Cancellation

You can cancel an MVE at any time. Canceling an MVE on a contract term will result in an early termination fee (ETF) equivalent to 100% of the remainder of the term.\
For more information, see the relevant topic for your provider:

* [6WIND](/mve/6wind/terminating-mve/)
* [Anapaya](/mve/anapaya/terminating-mve/)
* [Aruba](/mve/aruba/terminating-mve/)
* [Aviatrix](/mve/aviatrix/terminating-mve/)
* [Check Point](/mve/checkpoint/terminating-mve/)
* [Cisco](/mve/cisco/terminating-mve/)
* [Deciso OPNsense](/mve/deciso/terminating-mve/)
* [F5](/mve/f5/terminating-mve/)
* [Fortinet](/mve/fortinet/terminating-mve/)
* [Juniper](/mve/juniper/terminating-mve/)
* [Netskope One SD-WAN](/mve/netskope/terminating-mve/)
* [Palo Alto Networks (VM-Series)](/mve/palo-alto/terminating-mve/)
* [Palo Alto Networks (Prisma SD-WAN)](/mve/palo-alto/terminating-mve-prisma/)
* [Peplink](/mve/peplink/terminating-mve/)
* [Versa](/mve/versa/terminating-mve/)
* [VMware](/mve/vmware/terminating-mve/)

## Helpful references

* [Billing Overview](/finance/overview)
* [IX Pricing and Contract Terms](/finance/ix-pricing)
* [Managing Minimum Term Renewal](/portal-admin/auto-renew)
* [MCR Pricing and Contract Terms](/finance/mcr-pricing)
* [Megaport Internet Pricing and Contract Terms](/finance/megaport-internet-pricing)
* [MVE Billing](/finance/mve-billing)
* [Quoting Service Cost](/finance/creating-estimates)
* [Port Pricing and Contract Terms](/finance/port-pricing)
* [VXC Pricing and Contract Terms](/finance/vxc-pricing)
