Skip to content

Commit

Permalink
Update ssh_config.md
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
i-davydenko authored Aug 14, 2023
1 parent 9e32292 commit 8e0296d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/ssh_config/ssh_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ We want to enable configuring the following policies, with default values are ta
| login timeout | SSH session timeout | 1-600 (secs) | 120 |
| ports | Port numbers for SSH | 1-65535 | 22 |
| inactivity timeout | Inactivity timeout for SSH session | 0-35000 (min) | 15 |
| max sessions | Max number of concurrent logins | 0-100 | 100 |
| max sessions | Max number of concurrent logins | 0-100 | 0 |


### 1.8. Init flow
Expand Down Expand Up @@ -190,7 +190,7 @@ module sonic-ssh-server {
}
leaf max_syslogins {
description "limit of concurrent system logins, 0 means no limit";
default 100;
default 0;
type uint32 {
range 0..100;
}
Expand All @@ -212,7 +212,7 @@ The ConfigDB will be extended with next objects:
"login_timeout": "120",
"ports": "22",
"inactivity_timeout": "15",
"max_syslogins": "100",
"max_syslogins": "0"
}
}
}
Expand Down

0 comments on commit 8e0296d

Please sign in to comment.