-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This document provides general information about Banner implementation in SONiC The scope of this document is to cover definition, design and implementation of SONiC Banner feature and Banner CLI.
- Loading branch information
1 parent
91ca947
commit 6c0b90b
Showing
5 changed files
with
278 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,278 @@ | ||
# Banner messages HLD # | ||
|
||
## Table of contents | ||
- [Revision](#revision) | ||
- [About this manual](#about-this-manual) | ||
- [Scope](#scope) | ||
- [1 Introduction](#1-introduction) | ||
- [1.1 Feature overview](#11-feature-overview) | ||
- [1.2 Requirements](#12-requirements) | ||
- [2 Design](#2-design) | ||
- [2.1 Overview](#21-overview) | ||
- [2.2 Flows](#25-flows) | ||
- [2.3 CLI](#26-cli) | ||
- [2.3.1 Config command group](#231-config-command-group) | ||
- [2.3.2 Show command](#232-show-command) | ||
- [2.4 YANG model](#24-yang-model) | ||
- [3 Test plan](#3-test-plan) | ||
- [3.1 Unit tests via VS](#31-unit-tests-via-vs) | ||
|
||
|
||
# Revision | ||
| Rev | Date | Author | Description | | ||
|:---:|:----------:|:-------------------:|:----------------| | ||
| 0.1 | 01/02/2023 | Sviatoslav Boichuk | Initial version | | ||
|
||
|
||
# About this manual | ||
This document provides a high-level information for the SONiC Banner feature and Banner CLI. It describes high-level behavior, internal definition, design of the commands, syntax, and output definition. | ||
|
||
# Scope | ||
The scope of this document is to cover definition, design and implementation of SONiC Banner feature and Banner CLI. | ||
The document covers the next CLI: | ||
1. Commands to configure banner messages | ||
2. Command to display banner settings | ||
|
||
<!-- omit in toc --> | ||
## Abbreviations | ||
| Term | Meaning | | ||
|:------|:------------------------------------------| | ||
| SONiC | Software for Open Networking in the Cloud | | ||
| MOTD | Message of the day | | ||
| DB | Database | | ||
| CLI | Сommand-line Interface | | ||
| YANG | Yet Another Next Generation | | ||
|
||
<!-- omit in toc --> | ||
## List of figures | ||
- [Figure 1: Banner system chart diagram](#figure-1-banner-system-chart-diagram) | ||
- [Figure 2: Banner init flow](#figure-2-banner-init-flow) | ||
- [Figure 3: Banner config flow](#figure-3-banner-config-flow) | ||
- [Figure 4: Banner show configuration](#figure-4-banner-show-configuration) | ||
|
||
# 1 Introduction | ||
|
||
## 1.1 Feature overview | ||
The SONiC maintains several messages for communication with users. These messages are associated with login and logout processes. | ||
|
||
There are few banners message types: | ||
| Type | Description | | ||
| :-----------: | :-----------------------------------------------------------------------------: | | ||
| login | Display a banner to the users connected locally or remotely before login prompt | | ||
| motd | Display a banner to the users after login prompt | | ||
| logout | Display a logout banner to the users connected locally or remotely | | ||
|
||
|
||
## 1.2 Requirements | ||
|
||
**This feature will support the following functionality:** | ||
1. Show Banner configuration | ||
2. Configure Banner | ||
1. Feature state | ||
2. Login message | ||
3. Logout message | ||
4. MOTD | ||
|
||
# 2 Design | ||
|
||
## 2.1 Overview | ||
Here is the representation of SONiC platform using Banner feature: | ||
|
||
![Banner system chart diagram](images/banner_system_chart_diagram.png "Figure 1: Banner system chart diagram") | ||
<!-- omit in toc --> | ||
###### Figure 1: Banner system chart diagram | ||
|
||
This feature require access to SONiC DB. All messages (MOTD, login and logout) saved into the SONiC config database. Hostcfgd will listen for the configuration changes in corresponding tables and restart banner-config service. Banner config service - it is simple SystemD service which runs before we get SSH connection. It reads configured messages from database and apply it to Linux. | ||
|
||
**The Linux files will be used:** | ||
1. /etc/issue.net and /etc/issue - Login message | ||
2. /etc/motd - Message of the day | ||
3. /etc/logout_message - Logout message | ||
|
||
## 2.2 Flows | ||
<!-- omit in toc --> | ||
### 2.2.1 Banner init flow | ||
![Banner init flow](images/banner_init_diagram.png "Figure 2: Banner init flow") | ||
<!-- omit in toc --> | ||
###### Figure 2: Banner init flow | ||
|
||
<!-- omit in toc --> | ||
### 2.5.2 Banner config flow | ||
![Banner config flow](images/banner_config_diagram.png "Figure 3: Banner config flow") | ||
<!-- omit in toc --> | ||
###### Figure 3: Banner config flow | ||
|
||
<!-- omit in toc --> | ||
### 2.5.2 Banner show configuration | ||
![Banner show configuration](images/banner_show_diagram.png "Figure 4: Banner show configuration") | ||
<!-- omit in toc --> | ||
###### Figure 4: Banner show configuration | ||
|
||
The default Banner feature state is disabled. It means - the current (default) SONiC OS banner messages won't be changed. | ||
With disabled feature state - user can use provided CLI to configre banner messages. The changes will be applied to Config DB table. | ||
Only with enabled feature state, configured banner messages from Config DB will be applied to Linux. | ||
|
||
## 2.3 CLI | ||
|
||
<!-- omit in toc --> | ||
### 2.3.1 Command structure | ||
|
||
**User interface**: | ||
``` | ||
config | ||
\-- banner | ||
|-- state <enabled|disabled> | ||
|-- login <message> | ||
|-- logout <message> | ||
|-- motd <message> | ||
show | ||
\-- banner | ||
``` | ||
|
||
**Options:** | ||
|
||
General: | ||
1. `<message>` - Message to be configured: `string` | ||
|
||
## Multiline string support | ||
Banner feature support multiline string message. | ||
Example: config banner login "Hello!\nWellcome to SONiC CLI!" | ||
Banner output: " | ||
Hello! | ||
Wellcome to SONiC CLI! | ||
" | ||
|
||
|
||
#### 2.3.1 Config command group | ||
**The following command set banner feature state:** | ||
```bash | ||
config banner state <enabled|disabled> | ||
``` | ||
|
||
**The following command set loin banner message:** | ||
```bash | ||
config banner login <message> | ||
``` | ||
|
||
**The following command set logout banner message:** | ||
```bash | ||
config banner logout <message> | ||
``` | ||
|
||
**The following command set mesage of the day (MOTD):** | ||
```bash | ||
config banner motd <message> | ||
``` | ||
|
||
#### 2.3.2 Show command | ||
**The following command display banner configuration:** | ||
```bash | ||
root@sonic:/home/admin# show banner | ||
state login motd logout | ||
------- ------- ------------------------------------------------ -------- | ||
enabled Login You are on | ||
Message ____ ___ _ _ _ ____ | ||
/ ___| / _ \| \ | (_)/ ___| | ||
\___ \| | | | \| | | | | ||
___) | |_| | |\ | | |___ | ||
|____/ \___/|_| \_|_|\____| | ||
|
||
-- Software for Open Networking in the Cloud -- | ||
|
||
Unauthorized access and/or use are prohibited. | ||
All access and/or use are subject to monitoring. | ||
|
||
Help: https://sonic-net.github.io/SONiC/ | ||
``` | ||
## 2.4 YANG model | ||
New YANG model `sonic-banner.yang` will be added to provide support for configuring Banner messages. | ||
**Skeleton code:** | ||
``` | ||
module sonic-banner { | ||
|
||
yang-version 1.1; | ||
|
||
namespace "http://github.com/sonic-net/sonic-banner"; | ||
prefix banner_message; | ||
|
||
description "BANNER_MESSAGE YANG Module for SONiC-based OS"; | ||
|
||
revision 2023-05-18 { | ||
description "First Revision"; | ||
} | ||
|
||
container sonic-banner { | ||
|
||
container BANNER_MESSAGE { | ||
|
||
description "BANNER_MESSAGE part of config_db.json"; | ||
|
||
container MESSAGE { | ||
leaf state { | ||
type string { | ||
pattern "enabled|disabled"; | ||
} | ||
description "Banner feature state"; | ||
default disabled; | ||
} | ||
|
||
leaf login { | ||
type string; | ||
description "Banner message displayed to user before login prompt"; | ||
default "Debian GNU/Linux 11"; | ||
} | ||
|
||
leaf motd { | ||
type string; | ||
description "Banner message displayed to user after login prompt"; | ||
default "You are on | ||
____ ___ _ _ _ ____ | ||
/ ___| / _ \| \ | (_)/ ___| | ||
\___ \| | | | \| | | | | ||
___) | |_| | |\ | | |___ | ||
|____/ \___/|_| \_|_|\____| | ||
-- Software for Open Networking in the Cloud -- | ||
Unauthorized access and/or use are prohibited. | ||
All access and/or use are subject to monitoring. | ||
Help: https://sonic-net.github.io/SONiC/ | ||
"; | ||
} | ||
|
||
leaf logout { | ||
type string; | ||
description "Banner message dispalyed to the users on logout"; | ||
default ""; | ||
} | ||
} /* end of container MESSAGE */ | ||
} | ||
/* end of container BANNER_MESSAGE */ | ||
} | ||
/* end of top level container */ | ||
} | ||
/* end of module sonic-banner */ | ||
``` | ||
# 3 Test plan | ||
## 3.1 Unit tests | ||
1. Configure login banner message | ||
1. Logout form system. Login again - expected to see configured message | ||
before login prompt. | ||
2. Do not save configuration and reboot device, login to the system - expected to see default message before login prompt. | ||
3. Save configuration and reboot device - expected to see configured message before login prompt. | ||
2. Configure message of the day | ||
1. Logout form system. Login again - expected to see configured message | ||
after login prompt. | ||
2. Do not save configuration and reboot device,login to the system - expected to see default message after login prompt. | ||
3. Save configuration and reboot device - expected to see configured message after login prompt. | ||
3. Configure logout banner message | ||
1. Logout form system - expected to see configured logout message. | ||
2. Do not save configuration and reboot device. Logout from system after reboot - expected to see default message before login prompt. | ||
3. Save configuration and reboot device. Logout from system after reboot expected to see configured message before login prompt. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.