Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Add_workflow_for_techpubs
AUTH1UserResourceIdentifier{userKey=8a00a0c86820e56901685f374974002d, userName='null'}
JIRAIDAUTHSBX-116682
REV5UserResourceIdentifier{userKey=8a00a02355cd1c2f0155cd26cb8305e9, userName='null'}
REV6UserResourceIdentifier{userKey=8a00a02355cd1c2f0155cd26cb8305e9, userName='null'}
REV3UserResourceIdentifier{userKey=8a00a02355cd1c2f0155cd26c7480005, userName='null'}
REV1UserResourceIdentifier{userKey=8a00a0c862a2c6460162e28130640032, userName='null'}



Panel

In this section:

Table of Contents
maxLevel2



Info
iconfalse

Related articles:



The Logical Management IP Interface is a virtual management IP interface. Configure the Logical Management IP Interface using the CLI syntax described in this section.

Info
titleNote

A Logical Management Interface must include both physical management interfaces. Therefore, it should contain all four interfaces. Otherwise, this will result in a confd restart and ahealthcheck timeout (system down time) if the physical interface underlying the logical interface goes down.


Command Syntax

Code Block
languagenone
% set system logicalMgmtIpInterface <intfc_name>
	ipAddress <ip address>
	mgmtIpInterfaceGroupName <name>
	snmpListenOnlyOnThisInterface <false | true>
	state <disabled | enabled>
	useIpAddrAsSnmpSource <false | true>

Command Parameters

Parameter

Description

ipAddress

The logical IP address of the interface. The following IP address types are supported:

  • IPv4 – Uses dotted decimal format (for example 128.127.50.224).
  • IPv6 – Uses hexadecimal/colon format (for example, 1280:1276:3350:2224:2222:3333:8888:1245 or fd00:21:445:128::7880).

logicalMgmtIpInterface

The logical management IP interface name.

mgmtIpInterfaceGroupName

The name of the management IP interface group used by this logical IP interface.

snmpListenOnlyOnThisInterface

When this flag is set to True, and the flag "useIpAddrAsSnmpSource" is also set as True, the SBC receives SNMP requests only on this logical management IP address.

The options are:

  • false (default)
  • true

Note:

  • When this flag is set to True, and the flag useIpAddrAsSnmpSource is also set as True, the source address of all traps is the logical IP Address.
  • You cannot use this feature in cloud deployments where the SBC automatically registers to the
EMS
  • Spacevars
    0model3
    . This is because
the EMS
  • Spacevars
    0model3
    uses the SBC mgt0 IP
used
  • during
the
  • registration to check the reachability of the SBC. If only the logic IP is
only being
  • used, then
the EMS will not be able to
  • Spacevars
    0model3
    cannot reach the SBC
and it will be marked
  • , which will then get marked as offline.

state

Administrative state of the logical management IP interface.

  • disabled (default)  – The – Use this option to not use the logical management IP address is not being used for chassis management.
  • enabledThe Use this option to use the logical management IP address is being used for chassis management.

useIpAddrAsSnmpSource

Set this flag to “true” to receive SNMP requests on this logical management IP address. Without snmpListenOnlyOnThisInterface also set to True, the source of the traps is not necessarily this address. 

  • false (default)
  • true

Note:

  • You can only enable this flag on one logical management interface at a time.
  • When using this feature in a cloud deployment where the SBC automatically registers to the
EMS
  • Spacevars
    0model3
    , a static route needs to be configured. For more information, refer to Management Static Route - CLI.
    This allows the SBC to send the message from a mgmt interface that
the EMS
  • Spacevars
    0model3
    recognizes. For deployments where the SBC is manually configured in
the EMS
  • Spacevars
    0model3
    , the static route is not required because
the EMS can be provisioned
  • you can provision
    Spacevars
    0model3
    to know about alternate SBC IPs.


Command Example

To display the logical management IP interface configuration:

Code Block
languagenone
% show system logicalMgmtIpInterface LogMgmt  
	mgmtIpInterfaceGroupName mgmtGroup;  
	ipAddress 3FFE:1900:4545:3:200:F8FF:FE21:67CF;  
	state enabled;
	useIpAddrAsSnmpSource true;
	snmpListenOnlyOnThisInterface true;

To display the logical management IP interface configuration for two subnets:

Code Block
languagenone
 % show system logicalMgmtIpInterface 
	logicalMgmtIpInterface AGMGM { 
		mgmtIpInterfaceGroupName mgmtGroup1; 
		ipAddress 10.xx.xx.50; 
		state enabled;
		useIpAddrAsSnmpSource disabled;
	} 
	logicalMgmtIpInterface HAMGM { 
		mgmtIpInterfaceGroupName mgmtGroup; 
		ipAddress 10.xx.xx.65; 
		state enabled; 
		useIpAddrAsSnmpSource disabled;
	}

 

Info
titleNote

When configuring the management interfaces on two subnets, a logical management IP interface is needed for each subnet.