-->

2011-06-26

nfs4のポート固定

$ rcsdiff -r1.1 /etc/config-archive/etc/conf.d/nfs,v /etc/conf.d/nfs
===================================================================
RCS file: /etc/config-archive/etc/conf.d/nfs,v
retrieving revision 1.1
diff -r1.1 /etc/conf.d/nfs
15c15
< OPTS_RPC_MOUNTD=""
---
> OPTS_RPC_MOUNTD="-p 32767"
19c19
< OPTS_RPC_STATD=""
---
> OPTS_RPC_STATD="-p 32765 -o 32766"

$ grep lockd /etc/modprobe.d/_local.conf
options lockd nlm_udpport=32768 nlm_tcpport=32768

$ rpcinfo -p
   プログラム バージョン プロトコル ポート
    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
    100024    1   udp  32765  status
    100024    1   tcp  32765  status
    100005    1   udp  32767  mountd
    100005    1   tcp  32767  mountd
    100005    2   udp  32767  mountd
    100005    2   tcp  32767  mountd
    100005    3   udp  32767  mountd
    100005    3   tcp  32767  mountd
    100021    1   udp  32768  nlockmgr
    100021    3   udp  32768  nlockmgr
    100021    4   udp  32768  nlockmgr
    100021    1   tcp  32768  nlockmgr
    100021    3   tcp  32768  nlockmgr
    100021    4   tcp  32768  nlockmgr
    100003    2   tcp   2049  nfs
    100003    3   tcp   2049  nfs
    100003    4   tcp   2049  nfs
    100227    2   tcp   2049  nfs_acl
    100227    3   tcp   2049  nfs_acl
    100003    2   udp   2049  nfs
    100003    3   udp   2049  nfs
    100003    4   udp   2049  nfs
    100227    2   udp   2049  nfs_acl
    100227    3   udp   2049  nfs_acl

$ netstat -an|grep -P ":(111|2049|32765|32766|32767|32768)\s"|sort -t':' -k2n
tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN
udp        0      0 0.0.0.0:111             0.0.0.0:*
tcp        0      0 0.0.0.0:2049            0.0.0.0:*               LISTEN
udp        0      0 0.0.0.0:2049            0.0.0.0:*
tcp        0      0 0.0.0.0:32765           0.0.0.0:*               LISTEN
udp        0      0 0.0.0.0:32765           0.0.0.0:*
tcp        0      0 0.0.0.0:32767           0.0.0.0:*               LISTEN
udp        0      0 0.0.0.0:32767           0.0.0.0:*
tcp        0      0 0.0.0.0:32768           0.0.0.0:*               LISTEN
udp        0      0 0.0.0.0:32768           0.0.0.0:*

0 件のコメント: