Changeset 919 for vendor/current/source3/winbindd
- Timestamp:
- Jun 9, 2016, 2:17:22 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/winbindd/winbindd_cm.c
r860 r919 2385 2385 2386 2386 anonymous: 2387 if (lp_winbind_sealed_pipes() && (IS_DC || domain->primary)) { 2388 status = NT_STATUS_DOWNGRADE_DETECTED; 2389 DEBUG(1, ("Unwilling to make SAMR connection to domain %s " 2390 "without connection level security, " 2391 "must set 'winbind sealed pipes = false' " 2392 "to proceed: %s\n", 2393 domain->name, nt_errstr(status))); 2394 goto done; 2395 } 2387 2396 2388 2397 /* Finally fall back to anonymous. */ … … 2611 2620 anonymous: 2612 2621 2622 if (lp_winbind_sealed_pipes() && (IS_DC || domain->primary)) { 2623 result = NT_STATUS_DOWNGRADE_DETECTED; 2624 DEBUG(1, ("Unwilling to make LSA connection to domain %s " 2625 "without connection level security, " 2626 "must set 'winbind sealed pipes = false' " 2627 "to proceed: %s\n", 2628 domain->name, nt_errstr(result))); 2629 goto done; 2630 } 2631 2613 2632 result = cli_rpc_pipe_open_noauth(conn->cli, 2614 2633 &ndr_table_lsarpc.syntax_id, … … 2750 2769 no_schannel: 2751 2770 if ((lp_client_schannel() == False) || 2752 ((neg_flags & NETLOGON_NEG_SCHANNEL) == 0)) { 2771 ((neg_flags & NETLOGON_NEG_SCHANNEL) == 0)) { 2772 if (lp_winbind_sealed_pipes() && (IS_DC || domain->primary)) { 2773 result = NT_STATUS_DOWNGRADE_DETECTED; 2774 DEBUG(1, ("Unwilling to make connection to domain %s " 2775 "without connection level security, " 2776 "must set 'winbind sealed pipes = false' " 2777 "to proceed: %s\n", 2778 domain->name, nt_errstr(result))); 2779 TALLOC_FREE(netlogon_pipe); 2780 invalidate_cm_connection(conn); 2781 return result; 2782 } 2753 2783 /* 2754 2784 * NetSamLogonEx only works for schannel
Note:
See TracChangeset
for help on using the changeset viewer.