> ## 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.

# Managing Security Settings

> This help topic describes how to manage security settings for your Megaport Portal account.

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

The Security Settings option on the Settings menu allows you to set your Single Sign-On (SSO) and Multi-Factor Authentication (MFA) configuration details.

Choose User Menu > Admin Settings > Security Settings to access SSO and MFA settings.

<Image src="/images/portal-admin/security-settings.png" alt="This image shows the security settings page." shadow={true} width={650} />

## Managing Single Sign-On

Use the **Single Sign-On** tab to enable and manage SSO settings for your company.
For more information, see [Setting up Single Sign-On](/setting-up/enforcing-sso).

## Managing Multi-Factor Authentication

Use the **Multi-Factor Authentication** tab to administer MFA for your company.
For more information, see [Multi-Factor Authentication](/setting-up/enforcing-mfa).
