-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support TACACS Accounting #2762
Open
CLUDev
wants to merge
5
commits into
sonic-net:master
Choose a base branch
from
CLUDev:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
86ad906
add tacacs accounting support
klhaung 37b33d3
Support TACACS Accounting
CLUDev e45220e
Adjust indentation in hostcfgd
CLUDev e427c70
Merge remote-tracking branch 'upstream/master'
CLUDev c6c54f5
[Inventec][D7332] Add device and platform
CLUDev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,30 @@ | ||
# | ||
# /etc/pam.d/common-session - session-related modules common to all services | ||
# | ||
# This file is included from other service-specific PAM config files, | ||
# and should contain a list of modules that define tasks to be performed | ||
# at the start and end of sessions of *any* kind (both interactive and | ||
# non-interactive). | ||
# | ||
# As of pam 1.0.1-6, this file is managed by pam-auth-update by default. | ||
# To take advantage of this, it is recommended that you configure any | ||
# local modules either before or after the default block, and use | ||
# pam-auth-update to manage selection of other modules. See | ||
# pam-auth-update(8) for details. | ||
|
||
# here are the per-package modules (the "Primary" block) | ||
{% if acct['session'] == 'tacacs+' %} | ||
{% for server in servers %} | ||
session [success=done new_authtok_reqd=done default=ignore] pam_tacplus.so server={{ server.ip }}:{{ server.tcp_port }} secret={{ server.passkey }} service=shell | ||
{% endfor %} | ||
{% endif %} | ||
session [default=1] pam_permit.so | ||
# here's the fallback if no module succeeds | ||
session requisite pam_deny.so | ||
# prime the stack with a positive return value if there isn't one already; | ||
# this avoids us returning an error just because nothing sets a success code | ||
# since the modules above will each just jump around | ||
session required pam_permit.so | ||
# and here are more per-package modules (the "Additional" block) | ||
session required pam_unix.so | ||
# end of pam-auth-update config |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tabbing does not look right. Should be at the same level as 'key == authentication"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the review.
Indentation level has been corrected, please check again.
Thank you!