Source of /etc/protocols and /etc/services?/etc/rc*: Why does this command stop NFS services from starting at boot?What is the meaning of /etc (as acronym)How to use Public IP in case of Two ISP which difers from each other PfsenseWhat's the difference of `/etc/modules-load.d` and `/etc/modules`?iptables - how to drop protocolsAccidentally deleted /etc/network/interfaces on UbuntuConfused about “/etc/init.d” and services in “/lib/systemd/system”/etc/machine-info is missingStandards and protocols that were first implemented on Linux/Open sourceDual Boot System File Issues with /Etc/ Hosts and Profile
Is expanding the research of a group into machine learning as a PhD student risky?
How to run a prison with the smallest amount of guards?
Type int? vs type int
How to check is there any negative term in a large list?
Nautlius: add mouse right-click action to compute MD5 sum
How did Arya survive the stabbing?
Detecting if an element is found inside a container
Opposite of a diet
How do I find the solutions of the following equation?
Hostile work environment after whistle-blowing on coworker and our boss. What do I do?
Avoiding estate tax by giving multiple gifts
Is exact Kanji stroke length important?
Is a stroke of luck acceptable after a series of unfavorable events?
Do sorcerers' subtle spells require a skill check to be unseen?
when is out of tune ok?
CREATE opcode: what does it really do?
What is the intuitive meaning of having a linear relationship between the logs of two variables?
How easy is it to start Magic from scratch?
Unreliable Magic - Is it worth it?
Escape a backup date in a file name
How to Reset Passwords on Multiple Websites Easily?
Trouble understanding the speech of overseas colleagues
Does "every" first-order theory have a finitely axiomatizable conservative extension?
Why, precisely, is argon used in neutrino experiments?
Source of /etc/protocols and /etc/services?
/etc/rc*: Why does this command stop NFS services from starting at boot?What is the meaning of /etc (as acronym)How to use Public IP in case of Two ISP which difers from each other PfsenseWhat's the difference of `/etc/modules-load.d` and `/etc/modules`?iptables - how to drop protocolsAccidentally deleted /etc/network/interfaces on UbuntuConfused about “/etc/init.d” and services in “/lib/systemd/system”/etc/machine-info is missingStandards and protocols that were first implemented on Linux/Open sourceDual Boot System File Issues with /Etc/ Hosts and Profile
Those files are databases which contain IP protocol number, alias and service mappings. As a user I don't usually interact with those in any direct way, but the need to create special Linux/GNU distribution arose and I have noted that perl test-suite fails due to inability to fetch required numbers from the /etc/protocols database because it doesn't exists in my custom system.
For example from my desktop distro of choice(SMP Debian 4.17.17-1 (2018-08-18) x86_64 GNU/Linux):
/etc/protocols claims to be created from IANA list.
# Internet (IP) protocols
#
# Updated from http://www.iana.org/assignments/protocol-numbers and other
# sources.
# New protocols will be added on request if they have been officially
# assigned by IANA and are not historical.
# If you need a huge list of used numbers please install the nmap package.
The same goes for /etc/services.
# Network services, Internet style
#
# Note that it is presently the policy of IANA to assign a single well-known
# port number for both TCP and UDP; hence, officially ports have two entries
# even if the protocol doesn't support UDP operations.
#
# Updated from http://www.iana.org/assignments/port-numbers and other
# sources like http://www.freebsd.org/cgi/cvsweb.cgi/src/etc/services .
# New ports will be added on request if they have been officially assigned
# by IANA and used in the real-world or are needed by a debian package.
# If you need a huge list of used numbers please install the nmap package.
Indeed, the data they provide looks to be from indicated sources(but not at full extent, those databases seem to be partial). That specificity made me completely confused.
There are posix function calls to access them - getprotoent(3) which are described by IEEE Std 1003.1-2008 as follows:
endprotoent, getprotobyname, getprotobynumber, getprotoent, setprotoent - network protocol database functions
These functions shall retrieve information about protocols. This information is considered to be stored in a database that can be accessed sequentially or randomly. The implementation of this database is unspecified.
Format is relatively simple, and it would be nice to provide those files, but I don't want to fill databases manually or copy others work without proper understanding: is there any sort of central source for those? Who is responsible for filling the database?
- Library which exposes getprotoent(3) calls and therefore defines format(like, glibc)?
- Is there a standard content image of those specified in current POSIX spec?
- Distro maintainers to which it belongs?
- Or someone/something else entirely?
linux networking posix etc
New contributor
Semion Nadezhdin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Those files are databases which contain IP protocol number, alias and service mappings. As a user I don't usually interact with those in any direct way, but the need to create special Linux/GNU distribution arose and I have noted that perl test-suite fails due to inability to fetch required numbers from the /etc/protocols database because it doesn't exists in my custom system.
For example from my desktop distro of choice(SMP Debian 4.17.17-1 (2018-08-18) x86_64 GNU/Linux):
/etc/protocols claims to be created from IANA list.
# Internet (IP) protocols
#
# Updated from http://www.iana.org/assignments/protocol-numbers and other
# sources.
# New protocols will be added on request if they have been officially
# assigned by IANA and are not historical.
# If you need a huge list of used numbers please install the nmap package.
The same goes for /etc/services.
# Network services, Internet style
#
# Note that it is presently the policy of IANA to assign a single well-known
# port number for both TCP and UDP; hence, officially ports have two entries
# even if the protocol doesn't support UDP operations.
#
# Updated from http://www.iana.org/assignments/port-numbers and other
# sources like http://www.freebsd.org/cgi/cvsweb.cgi/src/etc/services .
# New ports will be added on request if they have been officially assigned
# by IANA and used in the real-world or are needed by a debian package.
# If you need a huge list of used numbers please install the nmap package.
Indeed, the data they provide looks to be from indicated sources(but not at full extent, those databases seem to be partial). That specificity made me completely confused.
There are posix function calls to access them - getprotoent(3) which are described by IEEE Std 1003.1-2008 as follows:
endprotoent, getprotobyname, getprotobynumber, getprotoent, setprotoent - network protocol database functions
These functions shall retrieve information about protocols. This information is considered to be stored in a database that can be accessed sequentially or randomly. The implementation of this database is unspecified.
Format is relatively simple, and it would be nice to provide those files, but I don't want to fill databases manually or copy others work without proper understanding: is there any sort of central source for those? Who is responsible for filling the database?
- Library which exposes getprotoent(3) calls and therefore defines format(like, glibc)?
- Is there a standard content image of those specified in current POSIX spec?
- Distro maintainers to which it belongs?
- Or someone/something else entirely?
linux networking posix etc
New contributor
Semion Nadezhdin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Those files are databases which contain IP protocol number, alias and service mappings. As a user I don't usually interact with those in any direct way, but the need to create special Linux/GNU distribution arose and I have noted that perl test-suite fails due to inability to fetch required numbers from the /etc/protocols database because it doesn't exists in my custom system.
For example from my desktop distro of choice(SMP Debian 4.17.17-1 (2018-08-18) x86_64 GNU/Linux):
/etc/protocols claims to be created from IANA list.
# Internet (IP) protocols
#
# Updated from http://www.iana.org/assignments/protocol-numbers and other
# sources.
# New protocols will be added on request if they have been officially
# assigned by IANA and are not historical.
# If you need a huge list of used numbers please install the nmap package.
The same goes for /etc/services.
# Network services, Internet style
#
# Note that it is presently the policy of IANA to assign a single well-known
# port number for both TCP and UDP; hence, officially ports have two entries
# even if the protocol doesn't support UDP operations.
#
# Updated from http://www.iana.org/assignments/port-numbers and other
# sources like http://www.freebsd.org/cgi/cvsweb.cgi/src/etc/services .
# New ports will be added on request if they have been officially assigned
# by IANA and used in the real-world or are needed by a debian package.
# If you need a huge list of used numbers please install the nmap package.
Indeed, the data they provide looks to be from indicated sources(but not at full extent, those databases seem to be partial). That specificity made me completely confused.
There are posix function calls to access them - getprotoent(3) which are described by IEEE Std 1003.1-2008 as follows:
endprotoent, getprotobyname, getprotobynumber, getprotoent, setprotoent - network protocol database functions
These functions shall retrieve information about protocols. This information is considered to be stored in a database that can be accessed sequentially or randomly. The implementation of this database is unspecified.
Format is relatively simple, and it would be nice to provide those files, but I don't want to fill databases manually or copy others work without proper understanding: is there any sort of central source for those? Who is responsible for filling the database?
- Library which exposes getprotoent(3) calls and therefore defines format(like, glibc)?
- Is there a standard content image of those specified in current POSIX spec?
- Distro maintainers to which it belongs?
- Or someone/something else entirely?
linux networking posix etc
New contributor
Semion Nadezhdin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Those files are databases which contain IP protocol number, alias and service mappings. As a user I don't usually interact with those in any direct way, but the need to create special Linux/GNU distribution arose and I have noted that perl test-suite fails due to inability to fetch required numbers from the /etc/protocols database because it doesn't exists in my custom system.
For example from my desktop distro of choice(SMP Debian 4.17.17-1 (2018-08-18) x86_64 GNU/Linux):
/etc/protocols claims to be created from IANA list.
# Internet (IP) protocols
#
# Updated from http://www.iana.org/assignments/protocol-numbers and other
# sources.
# New protocols will be added on request if they have been officially
# assigned by IANA and are not historical.
# If you need a huge list of used numbers please install the nmap package.
The same goes for /etc/services.
# Network services, Internet style
#
# Note that it is presently the policy of IANA to assign a single well-known
# port number for both TCP and UDP; hence, officially ports have two entries
# even if the protocol doesn't support UDP operations.
#
# Updated from http://www.iana.org/assignments/port-numbers and other
# sources like http://www.freebsd.org/cgi/cvsweb.cgi/src/etc/services .
# New ports will be added on request if they have been officially assigned
# by IANA and used in the real-world or are needed by a debian package.
# If you need a huge list of used numbers please install the nmap package.
Indeed, the data they provide looks to be from indicated sources(but not at full extent, those databases seem to be partial). That specificity made me completely confused.
There are posix function calls to access them - getprotoent(3) which are described by IEEE Std 1003.1-2008 as follows:
endprotoent, getprotobyname, getprotobynumber, getprotoent, setprotoent - network protocol database functions
These functions shall retrieve information about protocols. This information is considered to be stored in a database that can be accessed sequentially or randomly. The implementation of this database is unspecified.
Format is relatively simple, and it would be nice to provide those files, but I don't want to fill databases manually or copy others work without proper understanding: is there any sort of central source for those? Who is responsible for filling the database?
- Library which exposes getprotoent(3) calls and therefore defines format(like, glibc)?
- Is there a standard content image of those specified in current POSIX spec?
- Distro maintainers to which it belongs?
- Or someone/something else entirely?
linux networking posix etc
linux networking posix etc
New contributor
Semion Nadezhdin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Semion Nadezhdin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Semion Nadezhdin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked yesterday
Semion NadezhdinSemion Nadezhdin
82
82
New contributor
Semion Nadezhdin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Semion Nadezhdin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Semion Nadezhdin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Since you’re creating your own distribution, the responsibility for the contents of the /etc/protocols and /etc/services files you install rests with you.
The authority controlling the assignments of protocol and service numbers is the IANA, as documented in the file headers you quote; the corresponding lists are available on their web site, for protocol numbers and service names and port numbers. However, distribution maintainers commonly add entries which are used but haven’t been submitted to the IANA, or haven’t been approved, and remove entries which they consider to be obsolete. For Debian, the source of both files is in the netbase repository.
POSIX defines functions which can be used to retrieve protocol and service information, but it doesn’t specify how that data is stored or retrieved, as indicated in your quote:
The implementation of this database is unspecified.
The information contained in the database is also unspecified; POSIX only imposes requirements on the schema, effectively.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Semion Nadezhdin is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f508732%2fsource-of-etc-protocols-and-etc-services%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Since you’re creating your own distribution, the responsibility for the contents of the /etc/protocols and /etc/services files you install rests with you.
The authority controlling the assignments of protocol and service numbers is the IANA, as documented in the file headers you quote; the corresponding lists are available on their web site, for protocol numbers and service names and port numbers. However, distribution maintainers commonly add entries which are used but haven’t been submitted to the IANA, or haven’t been approved, and remove entries which they consider to be obsolete. For Debian, the source of both files is in the netbase repository.
POSIX defines functions which can be used to retrieve protocol and service information, but it doesn’t specify how that data is stored or retrieved, as indicated in your quote:
The implementation of this database is unspecified.
The information contained in the database is also unspecified; POSIX only imposes requirements on the schema, effectively.
add a comment |
Since you’re creating your own distribution, the responsibility for the contents of the /etc/protocols and /etc/services files you install rests with you.
The authority controlling the assignments of protocol and service numbers is the IANA, as documented in the file headers you quote; the corresponding lists are available on their web site, for protocol numbers and service names and port numbers. However, distribution maintainers commonly add entries which are used but haven’t been submitted to the IANA, or haven’t been approved, and remove entries which they consider to be obsolete. For Debian, the source of both files is in the netbase repository.
POSIX defines functions which can be used to retrieve protocol and service information, but it doesn’t specify how that data is stored or retrieved, as indicated in your quote:
The implementation of this database is unspecified.
The information contained in the database is also unspecified; POSIX only imposes requirements on the schema, effectively.
add a comment |
Since you’re creating your own distribution, the responsibility for the contents of the /etc/protocols and /etc/services files you install rests with you.
The authority controlling the assignments of protocol and service numbers is the IANA, as documented in the file headers you quote; the corresponding lists are available on their web site, for protocol numbers and service names and port numbers. However, distribution maintainers commonly add entries which are used but haven’t been submitted to the IANA, or haven’t been approved, and remove entries which they consider to be obsolete. For Debian, the source of both files is in the netbase repository.
POSIX defines functions which can be used to retrieve protocol and service information, but it doesn’t specify how that data is stored or retrieved, as indicated in your quote:
The implementation of this database is unspecified.
The information contained in the database is also unspecified; POSIX only imposes requirements on the schema, effectively.
Since you’re creating your own distribution, the responsibility for the contents of the /etc/protocols and /etc/services files you install rests with you.
The authority controlling the assignments of protocol and service numbers is the IANA, as documented in the file headers you quote; the corresponding lists are available on their web site, for protocol numbers and service names and port numbers. However, distribution maintainers commonly add entries which are used but haven’t been submitted to the IANA, or haven’t been approved, and remove entries which they consider to be obsolete. For Debian, the source of both files is in the netbase repository.
POSIX defines functions which can be used to retrieve protocol and service information, but it doesn’t specify how that data is stored or retrieved, as indicated in your quote:
The implementation of this database is unspecified.
The information contained in the database is also unspecified; POSIX only imposes requirements on the schema, effectively.
answered yesterday
Stephen KittStephen Kitt
178k24405481
178k24405481
add a comment |
add a comment |
Semion Nadezhdin is a new contributor. Be nice, and check out our Code of Conduct.
Semion Nadezhdin is a new contributor. Be nice, and check out our Code of Conduct.
Semion Nadezhdin is a new contributor. Be nice, and check out our Code of Conduct.
Semion Nadezhdin is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f508732%2fsource-of-etc-protocols-and-etc-services%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
-etc, linux, networking, posix