Actions
Bug #4393
closed/etc/rpc: 100133 and 100169 should be added
Start date:
2013-12-12
Due date:
% Done:
100%
Estimated time:
Difficulty:
Medium
Tags:
needs-triage
Gerrit CR:
Description
Currently, the rpcinfo(1m) is unaware about names of 100133 and 100169 programs:
# rpcinfo |egrep "100133|100169|service" program version netid address service owner 100169 1 ticlts D\\000\\000\\000 - superuser 100169 1 ticotsord F\\000\\000\\000 - superuser 100169 1 ticots H\\000\\000\\000 - superuser 100133 1 udp6 ::.150.103 - superuser 100133 1 tcp6 ::.241.184 - superuser 100133 1 udp 0.0.0.0.250.25 - superuser 100133 1 tcp 0.0.0.0.165.225 - superuser 100133 1 ticlts \\304\\002\\000\\000 - superuser 100133 1 ticotsord \\307\\002\\000\\000 - superuser 100133 1 ticots \\312\\002\\000\\000 - superuser #
After the following two lines are added to /etc/rpc:
nsm_addr 100133 fmd_adm 100169
the situation is much better:
# rpcinfo |egrep "100133|100169|service" program version netid address service owner 100169 1 ticlts D\\000\\000\\000 fmd_adm superuser 100169 1 ticotsord F\\000\\000\\000 fmd_adm superuser 100169 1 ticots H\\000\\000\\000 fmd_adm superuser 100133 1 udp6 ::.150.103 nsm_addr superuser 100133 1 tcp6 ::.241.184 nsm_addr superuser 100133 1 udp 0.0.0.0.250.25 nsm_addr superuser 100133 1 tcp 0.0.0.0.165.225 nsm_addr superuser 100133 1 ticlts \\304\\002\\000\\000 nsm_addr superuser 100133 1 ticotsord \\307\\002\\000\\000 nsm_addr superuser 100133 1 ticots \\312\\002\\000\\000 nsm_addr superuser #
See http://www.iana.org/assignments/rpc-program-numbers/rpc-program-numbers.xml for current number assignments. Maybe we should import the complete list of the RPC numbers?
Updated by Marcel Telka over 7 years ago
- Status changed from New to In Progress
- Assignee set to Marcel Telka
While on this I also took an opportunity to fix several minor issues as well:
- Some entries have the name-of-the-RPC-program (see rpc(4) for details) listed in the aliases field too. This is not needed and constitutes unnecessary duplicity. I removed all such duplicates from aliases.
- I sorted all entries by RPC-program-number.
Updated by Marcel Telka over 7 years ago
- Status changed from In Progress to Pending RTI
Updated by Electric Monk over 7 years ago
- Status changed from Pending RTI to Closed
- % Done changed from 0 to 100
git commit 97a9db610324e7db4393415018e0e737485a94cd
commit 97a9db610324e7db4393415018e0e737485a94cd Author: Marcel Telka <marcel.telka@nexenta.com> Date: 2015-02-06T18:36:54.000Z 4393 /etc/rpc: 100133 and 100169 should be added Reviewed by: Garrett D'Amore <garrett@damore.org> Reviewed by: Igor Kozhukhov <ikozhukhov@gmail.com> Approved by: Dan McDonald <danmcd@omniti.com>
Actions