diff options
Diffstat (limited to 'xlators/nfs/server/src/mount3.c')
| -rw-r--r-- | xlators/nfs/server/src/mount3.c | 36 | 
1 files changed, 36 insertions, 0 deletions
diff --git a/xlators/nfs/server/src/mount3.c b/xlators/nfs/server/src/mount3.c index 76b96e713..ff9037ccf 100644 --- a/xlators/nfs/server/src/mount3.c +++ b/xlators/nfs/server/src/mount3.c @@ -1803,6 +1803,24 @@ mnt3svc_init (xlator_t *nfsx)          if (ret == -1)                  goto err;          ret = dict_set_str (options, "transport-type", "socket"); +        if (ret == -1) { +                gf_log (GF_NFS, GF_LOG_ERROR, "dict_set_str error"); +                goto err; +        } + +        if (nfs->allow_insecure) { +                ret = dict_set_str (options, "rpc-auth-allow-insecure", "on"); +                if (ret == -1) { +                        gf_log (GF_NFS, GF_LOG_ERROR, "dict_set_str error"); +                        goto err; +                } +                ret = dict_set_str (options, "rpc-auth.ports.insecure", "on"); +                if (ret == -1) { +                        gf_log (GF_NFS, GF_LOG_ERROR, "dict_set_str error"); +                        goto err; +                } +        } +          rpcsvc_create_listeners (nfs->rpcsvc, options, nfsx->name);          if (ret == -1) {                  gf_log (GF_NFS, GF_LOG_ERROR, "Unable to create listeners"); @@ -1869,6 +1887,24 @@ mnt1svc_init (xlator_t *nfsx)          if (ret == -1)                  goto err;          ret = dict_set_str (options, "transport-type", "socket"); +        if (ret == -1) { +                gf_log (GF_NFS, GF_LOG_ERROR, "dict_set_str error"); +                goto err; +        } + +        if (nfs->allow_insecure) { +                ret = dict_set_str (options, "rpc-auth-allow-insecure", "on"); +                if (ret == -1) { +                        gf_log (GF_NFS, GF_LOG_ERROR, "dict_set_str error"); +                        goto err; +                } +                ret = dict_set_str (options, "rpc-auth.ports.insecure", "on"); +                if (ret == -1) { +                        gf_log (GF_NFS, GF_LOG_ERROR, "dict_set_str error"); +                        goto err; +                } +        } +          rpcsvc_create_listeners (nfs->rpcsvc, options, nfsx->name);          if (ret == -1) {                  gf_log (GF_NFS, GF_LOG_ERROR, "Unable to create listeners");  | 
