NFS 配置2

2022-07-09 23:26:45 浏览数 (1)

成功启动后111端口是监听状态

代码语言:javascript复制
[root@test ~]# netstat -an | grep 111
tcp        0      0 0.0.0.0:111                 0.0.0.0:*                   LISTEN      
tcp        0      0 :::111                      :::*                        LISTEN      
udp        0      0 0.0.0.0:111                 0.0.0.0:*                               
udp        0      0 :::111                      :::*                                    
[root@test ~]# 

Tip: NFS的启动信息默认会写到 /var/log/messages

NFS的服务会打开很多端口(并且其中一些端口是随机的)

代码语言:javascript复制
[root@test data]# netstat -tulnp | grep -E '(rpc|nfs)'
tcp        0      0 0.0.0.0:34146               0.0.0.0:*                   LISTEN      37900/rpc.mountd    
tcp        0      0 0.0.0.0:44934               0.0.0.0:*                   LISTEN      37900/rpc.mountd    
tcp        0      0 0.0.0.0:56230               0.0.0.0:*                   LISTEN      2360/rpc.statd      
tcp        0      0 0.0.0.0:875                 0.0.0.0:*                   LISTEN      37895/rpc.rquotad   
tcp        0      0 0.0.0.0:111                 0.0.0.0:*                   LISTEN      2338/rpcbind        
tcp        0      0 0.0.0.0:48980               0.0.0.0:*                   LISTEN      37900/rpc.mountd    
tcp        0      0 :::51424                    :::*                        LISTEN      37900/rpc.mountd    
tcp        0      0 :::35175                    :::*                        LISTEN      37900/rpc.mountd    
tcp        0      0 :::111                      :::*                        LISTEN      2338/rpcbind        
tcp        0      0 :::45202                    :::*                        LISTEN      2360/rpc.statd      
tcp        0      0 :::41402                    :::*                        LISTEN      37900/rpc.mountd    
udp        0      0 0.0.0.0:34189               0.0.0.0:*                               37900/rpc.mountd    
udp        0      0 0.0.0.0:60207               0.0.0.0:*                               37900/rpc.mountd    
udp        0      0 0.0.0.0:817                 0.0.0.0:*                               2338/rpcbind        
udp        0      0 0.0.0.0:48316               0.0.0.0:*                               2360/rpc.statd      
udp        0      0 0.0.0.0:54461               0.0.0.0:*                               37900/rpc.mountd    
udp        0      0 127.0.0.1:840               0.0.0.0:*                               2360/rpc.statd      
udp        0      0 0.0.0.0:875                 0.0.0.0:*                               37895/rpc.rquotad   
udp        0      0 0.0.0.0:111                 0.0.0.0:*                               2338/rpcbind        
udp        0      0 :::54948                    :::*                                    37900/rpc.mountd    
udp        0      0 :::817                      :::*                                    2338/rpcbind        
udp        0      0 :::43853                    :::*                                    37900/rpc.mountd    
udp        0      0 :::52049                    :::*                                    37900/rpc.mountd    
udp        0      0 :::111                      :::*                                    2338/rpcbind        
udp        0      0 :::36981                    :::*                                    2360/rpc.statd      
[root@test data]# 

0 人点赞