UNSOLVED

Cherlu

updated

7 years ago

C

Cherlu

1 Rookie

11 Posts

0

3062

May 31st, 2019 10:00

how to search a NFS client?

Hi, I am new to Isilon OneFS.:-) We have to manage more then 100 NFS export files spread around the access zones. Some of the client has listed in more then one export files. Without knowing the access zone name and the path of export file now how can I reach and then list a particular client with it export file path? I tried this cli, it showed not only the client "xxxxx" also showed the other clients together. In the same time I have to know the zone name and id of the export file. # isi_for_array isi nfs exports view --zone=xxxxx --id=x | grep -i "xxxxx" isilon cluster: Root Clients: xxxxx, yyyyy Thanks,
  • Phil.Lam

    4 Apprentice

    641 Posts

    12 Points

    2692

    0

    Posted June 6th, 2019 14:00

    Cherlu,

    try this:

    # isi nfs exports list -v | egrep -i "zone|clients"

  • Cherlu

    1 Rookie

    11 Posts

    2664

    0

    Posted June 10th, 2019 08:00

    Hi, thanks it works.

    so I twisted the cli to like this:

    #isi nfs exports list -v | egrep -i "id|paths|clientname"

    This cli shows the specific client name with ID and paths but it also showed the entire ID with paths of the NFS exports file which they are not associate with the specific client.

    So how can I only list the specific client name with it ID and file paths?

  • cadencep45

    4 Apprentice

    318 Posts

    2243

    0

    Posted January 29th, 2020 00:00

    Try

     

    isi nfs exports list -v | egrep --color=auto "ID|Paths|Clients| "

    its not perfect, but highlights the being looked for ( along with some non interesting phrases )