-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add j2 template for enable pam_limit and limit SSH session (#10298)
#### Why I did it When too many user login concurrently and run commands, SONiC may kernel panic on some device which has very limited memory. #### How I did it Add j2 template for setup pam_limit plugin for limit SSH session per-user. #### How to verify it Manually validate the j2 template can generate correct config file. #### Which release branch to backport (provide reason below if selected) - [x] 201811 - [ ] 201911 - [ ] 202006 - [x] 202012 - [x] 202106 - [x] 202111 #### Description for the changelog Add j2 template for setup pam_limit plugin for limit SSH session per-user. #### A picture of a cute animal (not mandatory but encouraged)
- Loading branch information
Showing
3 changed files
with
146 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
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,69 @@ | ||
# /etc/security/limits.conf | ||
# | ||
# This file generate by j2 template file: src/sonic-host-services-data/templates/limits.conf.j2 | ||
# | ||
# Each line describes a limit for a user in the form: | ||
# | ||
# <domain> <type> <item> <value> | ||
# | ||
# Where: | ||
# <domain> can be: | ||
# - a user name | ||
# - a group name, with @group syntax | ||
# - the wildcard *, for default entry | ||
# - the wildcard %, can be also used with %group syntax, | ||
# for maxlogin limit | ||
# - NOTE: group and wildcard limits are not applied to root. | ||
# To apply a limit to the root user, <domain> must be | ||
# the literal username root. | ||
# | ||
# <type> can have the two values: | ||
# - "soft" for enforcing the soft limits | ||
# - "hard" for enforcing hard limits | ||
# | ||
# <item> can be one of the following: | ||
# - core - limits the core file size (KB) | ||
# - data - max data size (KB) | ||
# - fsize - maximum filesize (KB) | ||
# - memlock - max locked-in-memory address space (KB) | ||
# - nofile - max number of open file descriptors | ||
# - rss - max resident set size (KB) | ||
# - stack - max stack size (KB) | ||
# - cpu - max CPU time (MIN) | ||
# - nproc - max number of processes | ||
# - as - address space limit (KB) | ||
# - maxlogins - max number of logins for this user | ||
# - maxsyslogins - max number of logins on the system | ||
# - priority - the priority to run user process with | ||
# - locks - max number of file locks the user can hold | ||
# - sigpending - max number of pending signals | ||
# - msgqueue - max memory used by POSIX message queues (bytes) | ||
# - nice - max nice priority allowed to raise to values: [-20, 19] | ||
# - rtprio - max realtime priority | ||
# - chroot - change root to directory (Debian-specific) | ||
# | ||
# | ||
# <value> is related with <item>: | ||
# All items support the values -1, unlimited or infinity indicating | ||
# no limit, except for priority and nice. | ||
# | ||
# If a hard limit or soft limit of a resource is set to a valid value, | ||
# but outside of the supported range of the local system, the system | ||
# may reject the new limit or unexpected behavior may occur. If the | ||
# control value required is used, the module will reject the login if | ||
# a limit could not be set. | ||
# | ||
# <domain> <type> <item> <value> | ||
# | ||
|
||
# * soft core 0 | ||
# root hard core 100000 | ||
# * hard rss 10000 | ||
# @student hard nproc 20 | ||
# @faculty soft nproc 20 | ||
# @faculty hard nproc 50 | ||
# ftp hard nproc 0 | ||
# ftp - chroot /ftp | ||
# @student - maxlogins 4 | ||
|
||
# End of file |
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,12 @@ | ||
#THIS IS AN AUTO-GENERATED FILE | ||
# | ||
# This file generate by j2 template file: src/sonic-host-services-data/templates/pam_limits.j2 | ||
# | ||
# /etc/pam.d/pam-limits settings common to all services | ||
# This file is included from other service-specific PAM config files, | ||
# and should contain a list of the authentication modules that define | ||
# the central authentication scheme for use on the system | ||
# (e.g., /etc/shadow, LDAP, Kerberos, etc.). The default is to use the | ||
# traditional Unix authentication mechanisms. | ||
# | ||
# here are the per-package modules (the "Primary" block) |