大家好,又见面了,我是你们的朋友全栈君。
NFS 本身是没有提供信息传输的协议和功能的,它使用的是 RPC (Remote Procedure Call)协议。
通过rpcinfo
命令可以查看 NFS 相关的端口:
linux@linux-virtual-machine:~$ rpcinfo -p localhost
program vers proto port service
100000 4 tcp 111 portmapper
100000 3 tcp 111 portmapper
100000 2 tcp 111 portmapper
100000 4 udp 111 portmapper
100000 3 udp 111 portmapper
100000 2 udp 111 portmapper
100005 1 udp 42754 mountd
100005 1 tcp 41379 mountd
100005 2 udp 35253 mountd
100005 2 tcp 38577 mountd
100005 3 udp 54781 mountd
100005 3 tcp 38547 mountd
100003 3 tcp 2049 nfs
100003 4 tcp 2049 nfs
100227 3 tcp 2049
100003 3 udp 2049 nfs
100227 3 udp 2049
100021 1 udp 33454 nlockmgr
100021 3 udp 33454 nlockmgr
100021 4 udp 33454 nlockmgr
100021 1 tcp 39595 nlockmgr
100021 3 tcp 39595 nlockmgr
100021 4 tcp 39595 nlockmgr
以上这些端口中,2049 和 111 端口是固定端口,mountd
和 nlockmgr
对应的端口是随机分配的。正常情况下,应该还有 status
服务占用端口,不知道为啥老王的系统上没有。算了,这不重要。
mountd
、nlockmgr
、和status
服务默认情况下是随机分配端口的,但这样搞不好配置防火墙或者端口映射啥的。
修改/etc/default/nfs-common
文件,配置status
服务端口为40000:
STATDOPTS="--port 40000"
修改/etc/default/nfs-kernel-server
文件,配置mountd
服务端口为40001:
RPCMOUNTDOPTS="--manage-gids -p 40001"
创建/etc/modprobe.d/options.conf
文件,添加如下内容,配置nlockmgr
端口为40002:
options lockd nlm_udpport=40002 nlm_tcpport=40002
然后在/etc/modules
文件中添加lockd
:
# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.
lockd
重启 PC 使配置生效。重启后,查看配置效果:
linux@linux-virtual-machine:~$ rpcinfo -p localhost
program vers proto port service
100000 4 tcp 111 portmapper
100000 3 tcp 111 portmapper
100000 2 tcp 111 portmapper
100000 4 udp 111 portmapper
100000 3 udp 111 portmapper
100000 2 udp 111 portmapper
100005 1 udp 40001 mountd
100005 1 tcp 40001 mountd
100005 2 udp 40001 mountd
100005 2 tcp 40001 mountd
100005 3 udp 40001 mountd
100005 3 tcp 40001 mountd
100003 3 tcp 2049 nfs
100003 4 tcp 2049 nfs
100227 3 tcp 2049
100003 3 udp 2049 nfs
100227 3 udp 2049
100021 1 udp 40002 nlockmgr
100021 3 udp 40002 nlockmgr
100021 4 udp 40002 nlockmgr
100021 1 tcp 40002 nlockmgr
100021 3 tcp 40002 nlockmgr
100021 4 tcp 40002 nlockmgr
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/153570.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...