[Networking] Move NFS lockd and rquotad ports outside the ephemeral ports range.#3153
Draft
gmarciani wants to merge 1 commit intoaws:developfrom
Draft
[Networking] Move NFS lockd and rquotad ports outside the ephemeral ports range.#3153gmarciani wants to merge 1 commit intoaws:developfrom
gmarciani wants to merge 1 commit intoaws:developfrom
Conversation
3061f01 to
db267e4
Compare
…orts range. The upstream NFS cookbook assigns lockd to port 32768 and rquotad to 32769, both inside the Linux ephemeral port range (32768-60999). During boot, another process can grab these ports via ephemeral allocation before NFS starts, causing EADDRINUSE and cluster creation failure. In this change, we move lockd to 32763 and rquotad to 32764, which are outside the ephemeral port range and adjacent to the other NFS services (statd 32765, statd_out 32766, mountd 32767) which remain unchanged.
db267e4 to
67e5544
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description of changes
Move NFS lockd and rquotad ports outside the ephemeral ports range.
The upstream NFS cookbook assigns lockd to port 32768 and rquotad to 32769, both inside the Linux ephemeral port range (32768-60999).
During boot, another process can grab these ports via ephemeral allocation before NFS starts, causing EADDRINUSE and cluster creation failure.
In this change, we move lockd to 32763 and rquotad to 32764, which are outside the ephemeral port range and adjacent to the other NFS services (statd 32765, statd_out 32766, mountd 32767) which remain unchanged.
Tests
test_essential_featureson all supported OSs.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.