In-band Management Configuration
Enabling In-band Management in an Instance
Use the following CLI syntax to enable in-band management in an instance:
| Attribute | Description |
|---|---|
|
Routing instance name in which in-band management has to be enabled. All the IFLs in this instance will be enabled with in-band management service after executing this command |
The following example configures the management instance in which in-band management will be enabled:
set inband-management instance management
The following example shows in-band management in an instance:
"rtbrick-config:inband-management": {
"instance": [
{
"name": "management",
}
]
}
To access the RESTCONF API that corresponds to this CLI, click
here.
Enabling In-band Management Services
Syntax:
| Attribute | Description ` |
|---|---|
<instance-name>` |
Routing instance name in which in-band management has to be enabled. All the IFLs in this instance will be enabled with in-band management service after executing this command |
|
Specifies the supported services to enable: apigw, ctrld, ntp, snmp, ssh, tacacs, telnet. By enabling any of these services, hosts reachable via the physical interface in the inband instance can access the services. |
|
A |
Example: Enabling In-band Management Services
"rtbrick-config:inband-management": {
"instance": [
{
"name": "management",
"ssh": "true",
"ctrld": "true"
}
]
}
Enabling API Gateway (APIGW) Service
To access the APIGW service running in the RtBrick Host, this service has to be enabled in in-band management.
Syntax:
| Attribute | Description |
|---|---|
|
Routing instance name in which in-band management has to be enabled. |
|
A |
Example: Enabling APIGW In-band Management Services
"rtbrick-config:inband-management": {
"instance": [
{
"name": "management",
"apigw": "true",
}
]
}
Enabling CTRLD Service
To access the CTRLD service running in the RtBrick Host, the CTRLD service has to be enabled in in-band management.
Syntax:
| Attribute | Description |
|---|---|
|
Routing instance name in which in-band management has to be enabled. |
|
A |
Example: Enabling CTRLD In-band Management Services
"rtbrick-config:inband-management": {
"instance": [
{
"name": "management",
"ctrld": "true",
}
]
}
Enabling NTP service
To access the NTP service running in the RtBrick Host, this service has to be enabled in in-band management.
Syntax:
| Attribute | Description |
|---|---|
|
Routing instance name in which in-band management has to be enabled. |
|
A |
Example: Enabling NTP In-band Management Services
"rtbrick-config:inband-management": {
"instance": [
{
"name": "management",
"ntp": "true",
}
]
}
Enabling SNMP service
To access the Simple Network Management Protocol (SNMP) service running in the RtBrick Host, this service has to be enabled in in-band management.
Syntax:
| Attribute | Description |
|---|---|
|
routing instance name in which in-band management has to be enabled. |
|
A |
Example: Enabling SNMP In-band Management Services
"rtbrick-config:inband-management": {
"instance": [
{
"name": "management",
"snmp": "true",
}
]
}
Enabling SSH service
To access the ssh service running in the LXC container hosting RBFS, ssh service has to be enabled.
Syntax:
| Attribute | Description |
|---|---|
|
Routing instance name in which in-band management has to be enabled. |
|
A 'true' value enables the ssh service. A 'false' value disables the ssh service. |
Example: Enabling SSH In-band Management Services
"rtbrick-config:inband-management": {
"instance": [
{
"name": "management",
"ssh": "true",
}
]
}
Enabling TACACS Service
To access the TACACS service running in the RtBrick Host, this service has to be enabled in in-band management.
Syntax:
| Attribute | Description |
|---|---|
|
Routing instance name in which in-band management has to be enabled. |
|
A |
Example: Enabling TACACS In-band Management Services
"rtbrick-config:inband-management": {
"instance": [
{
"name": "management",
"tacacs": "true",
}
]
}
Enabling Telnet Service
To access the telnet service running in the LXC container hosting RBFS, telnet service has to be enabled.
Syntax:
| Attribute | Description |
|---|---|
|
Routing instance name in which in-band management has to be enabled. |
|
A 'true' value enables the telnet service. A 'false' value disables the telnet service. |
Example: Enabling Telnet In-band Management Services
"rtbrick-config:inband-management": {
"instance": [
{
"name": "management",
"telnet": "true",
}
]
}
Enabling Connection Tracking
Enabling connection tracking in inband installs dynamic ACLs for all the connection/packet initiated by the device so that the response packets are not dropped at the hardware.
Syntax:
| Attribute | Description |
|---|---|
|
Routing instance name in which in-band management has to be enabled. |
|
Enables all in-band management services. |
Example: Enabling Connection Tracking in In-band Management
"rtbrick-config:inband-management": {
"instance": [
{
"name": "default",
"connection-tracking": "true"
}
]
}
Enabling LIX1 Service
To enable or disable the "lix1" service within inband management, use the following CLI command:
Attribute |
Description |
|
Specifies the routing instance where the in-band lix1 service is to be enabled. |
|
Setting this attribute to "true" enables the "lix1" service, while setting it to "false" disables the service. |
Example: Enabling the "lix1" service in inband management
"rtbrick-config:inband-management": {
"instance": [
{
"name": "default",
"lix1": "true",
}
]
}
Enabling All Services in In-band Management
Enabling this service will allow access to all services running in LXC/RtBrick Host. Once this service is enabled, packets that don’t hit any of the other acls/services in RBFS are redirected to LXC/RtBrick Host.
Syntax:
| Attribute | Description |
|---|---|
|
Routing instance name in which in-band management has to be enabled. |
|
Enables all in-band management services. |
Example: Enabling all In-band Management Services
"rtbrick-config:inband-management": {
"instance": [
{
"name": "management",
"all": "true",
}
]
}
Enabling In-band Management for a Specific Source
You can enable in-band management services (as mentioned in the previous sections). It will expose this service to all the sources which are reachable via in-band service.
The in-band management source-prefix-list option supports various prefix ranges such as /16, /24, and /32. It can support a prefix list with any IPv4 prefixes.
To restrict this to specific source prefixes, source-prefix-list has to be enabled using the following command.
By configuring this, the hosts having IPs in the mentioned source prefix list only can access this service.
Syntax:
| Attribute | Description |
|---|---|
|
Routing instance name in which in-band management has to be enabled. |
|
Specifies the name of the source prefix-list which is configured with |
Example: Enabling source prefix list in In-band Management Services
"rtbrick-config:inband-management": {
"instance": [
{
"name": "management",
"source-prefix-list": "source-prefix1"
}
]
}
The following example configuration enables multiple prefix lists for in-band management.
set inband-management instance inband-vrf ssh true set inband-management instance inband-vrf source-prefix-list rtbrick-p1 set forwarding-options prefix-list rtbrick-p1 ipv4-prefix 198.51.100.0/24 set forwarding-options prefix-list rtbrick-p1 ipv4-prefix 203.0.113.0/24 set forwarding-options prefix-list rtbrick-p1 ipv4-prefix 192.0.2.1/32 set instance inband-vrf address-family ipv4 unicast set instance inband-vrf address-family ipv6 unicast
"rtbrick-config:inband-management": {
"instance": [
{
"name": "inband-vrf",
"ssh": "true",
"source-prefix-list": "rtbrick-p1"
}
]
},
"rtbrick-config:forwarding-options": {
"prefix-list": [
{
"prefix-list-name": "rtbrick-p1",
"ipv4-prefix": [
{
"ipv4-prefix": "198.51.100.1/24"
},
{
"ipv4-prefix": "203.0.113.0/24"
},
{
"ipv4-prefix": "192.0.2.1/32"
}
]
}
]
},
"rtbrick-config:instance": [
{
"name": "inband-vrf",
"address-family": [
{
"afi": "ipv4",
"safi": "unicast"
},
{
"afi": "ipv6",
"safi": "unicast"
}
]
}
],
Setting Loopback-Only Interfaces of SSH Service
By default, you both loopback and non-loopback interfaces are available for In-band Management services. When loopback-only is set to true, management protocols such as SSH, CTRLD, and other management services can be accessed only through loopback interfaces that belong to the in-band management instance. Non-loopback interface addresses are not used for management access.
Syntax:
The following table provide the command options and descriptions.
| Attribute | Description |
|---|---|
|
Name of the instance. |
|
Inband management access is available only through loopback interfaces that belong to the in-band management instance. |
The following example configures the in-band management instance 'default' to allow management access only through loopback interface addresses. When loopback-only is set to true, non-loopback interface addresses are excluded from in-band management access.
set inband-management instance default loopback-only true
{
"rtbrick-config:inband-management": {
"instance": [
{
"name": "default",
"loopback-only": "true"
}
]
}
}