Stanford University, ITS CRC; Draft v.9; Noah Abrahamson 2/7/08 (Page 1)
|
|
|
- Sabrina Ferguson
- 10 years ago
- Views:
Transcription
1 Configuring cross platform filesharing This is a rough guide to help you configure your Mac server to share files to both Windows and Mac clients. It uses the university s OpenLDAP directory for account provisioning, Kerberos for authentication and Open Directory for access controls. Things that need to be done Install and update Mac OS X 10.5 Server. Install a proper edu.mit.kerberos file. Request an AFP and CIFS keytab from the Kerberos group. Bind your Mac to Stanford s OpenLDAP directory. Make your Mac an Open Directory Master. Import your keytabs to your Mac server. Configure your smb.conf. Edit your AFP plist. Create sharepoints. Create groups in Open Directory. Create access control lists. Test from Vista, XP and Mac OS X. Secure your server. Install Mac OS X 10.5 Server There are best practice guides available, so I ll leave this up to you. Make sure you re installing the Advanced configuration option however. If you have initially configured your server in Standard or Workgroup modes, you will need to change it to Advanced. This is a one way only conversion; you can t revert back. These instructions don t take into account a machine upgraded from 10.4 Server (Tiger); those administrators may have additional steps or considerations not covered in this document. You will absolutely need to make sure your Mac has DNS properly configured and that your server s fully qualified domain name resolves forwards and backwards. Install a proper krb5.conf file Apple doesn t really use this name for the Kerberos configuration file. It s called edu.mit.kerberos instead, using the reverse DNS naming convention that s all the rage. It s the same file, however, just with a different name and location as what some users would expect. You can get this file either by copying it from /usr/pubsw/etc/krb5.conf on any of the campus Unix/Linux cluster machines (cardinal, vine, bramble, etc), or installing the Kerberos for Macintosh Configuration Tool from Essential Stanford Software. Request your keytabs You will need to request at least two keytabs from the Kerberos group. Information is found on the Unix Group s Kerberos instructions webpage. Stanford University, ITS CRC; Draft v.9; Noah Abrahamson [email protected] 2/7/08 (Page 1)
2 For Mac file sharing (AFP), ask for an afpserver keytab. For Samba (SMB) ask for a cifs keytab. Optionally, ask for a host keytab for Kerberized ssh. You don t need to bother making a Kerberos 4 srvtab; that service is deprecated in our environment. Bind your Mac to Stanford s OpenLDAP Instructions are on another document, originally written for Mac OS X They still apply with 10.5, though you will want to make one addition. Add the record type Groups with the attribute posixgroup and the same search base as the Users record. Although user group in our OpenLDAP directory are inaccessible (for the purposes of creating ACLs), this dummy mapping makes Workgroup Manager happy. Make your Mac an Open Directory Master You need this to create the local LDAPv3 directory, which you will use to create groups for the purposes of regulating access. Theoretically, you can get away with just using the /Local/Default directory, but you ll want the advanced features of LDAPv3 and not the plist files that replaced NetInfo in Leopard. If you can, find another Leopard server to make an Open Directory replica, especially if you have a lot of accounts or want to use MCX for group policy type management actions on Mac client workstations. Also, double check that your OD Master doesn t rewrite your edu.mit.kerberos file or populate your keytab with service principles. You can prevent this by making sure you don t click the Kerberize button in Server Admin s Open Directory management pane (or when first creating the OD Master). Kerberos should be shown as Stopped in the information window. Import your keytabs to your server You probably created your keytabs on one of the Unix/Linux clusters, and hopefully they re in an exceptionally secure directory in your AFS space. Use scp to securely bring them down to your server and use the ktutil command to read and write them to your server s /etc/krb5.keytab file. Keep in mind that all Leopard machines are their own KDC (both Server and client versions of the operating systems). Don t be worried about seeing LKDC service principles, but make sure you see something like cifs/[email protected] when listing. Configure your smb.conf file This is where it gets fun. Not unsurprisingly, you will need to use your favorite text editor along with Server Admin. Stanford University, ITS CRC; Draft v.9; Noah Abrahamson [email protected] 2/7/08 (Page 2)
3 A little background about Samba on MOSXS Samba is a little different in Leopard than in Tiger. Although both versions are listed as b apple, there are considerable changes (not least of which is support for packet signing). For our work, we need to know that there are a couple configuration files in play when setting up Samba (which are not present with Tiger). When you make changes in Server Admin, your input will write out an XML plist file at /Library/Preferences/SystemConfiguration/com.apple.smb.server.plist. A launchd process will then notice the changes and kick off /usr/libexec/samba/synchronize preferences. This binary will then read your XML plist and output an abbreviated (but typical looking) smb.conf file in either /var/run ( ) or /var/db ( , subject to change). Finally, in the master /etc/smb.conf file, there s a hook to add those values in this supplemental configuration file. If you hand edit the smb.server.plist or the supplementary smb.conf file, your changes will be overwritten. Adding your own variables unavailable in Server Admin requires hand editing the master smb.conf file in /etc and then, only at the bottom after the comments. Since smb.conf files are read top down any variables that contradict attributes earlier in the file (or in the supplementary smb.conf file) will be heeded. So, for example, if you edit /etc/smb.conf and add: [global] log level = 10 Your addition will supersede the log level = 1 above in the same file, as well as the log level = 3 that may be found in the supplementary smb.conf file in either /var/db or /var/run. If you edit anywhere other than below the bottom comments in /etc/smb.conf, your edits risk being expunged in future OS updates. Do not attempt to set the immutable bit on any of the Samba configuration files to thwart Server Admin. It will result in smbd not launching properly. Stanford specific edits, suggested parameters Add the following to the bottom of your /etc/smb.conf file: [global] use kerberos keytab = yes security = user workgroup = WIN realm = stanford.edu acl check permissions = no veto files = /Thumbs.db/ These edits have these effects: Stanford University, ITS CRC; Draft v.9; Noah Abrahamson [email protected] 2/7/08 (Page 3)
4 use kerberos keytab = yes will tell Samba to use your /etc/krb5.keytab which you ve added the stanford.edu service principles. This will allow Kerberos authentication. security = user means that the users account information will be passed to the passdb backend, specified by default with the odsam variable. workgroup = WIN allows the use of spnego (itself permitted earlier in the default configuration). realm = stanford.edu is the Kerberos realm for Samba as specified in the server s edu.mit.kerberos file. acl check permissions = no is to override a bug in Samba where Windows machines don t properly honor the ACLs at the root level of the share. veto files = /Thumbs.db/ will make this small file invisible to Windows users. This miniature database holds meta information from Leopard, such as a thumbnail preview. You can add other variable here in the [global] preference realm, such as increasing the verbosity of logging. A word about how to configure Samba shares Use Server Admin to set up your shares. This is different from Tiger Server, where Workgroup Manager is used. Do not add your own Samba shares in /etc/smb.conf. Like with the supplemental smb.conf written as output from Server Admin and hooked in the master /etc/smb.conf, Samba shares are similarly configured in the modular fashion. Each share that s made available by SMB will have a discrete configuration file located in /var/samba/shares. In the master /etc/smb.conf file, there s a hook to include these configuration files. Unfortunately, there s currently a bug in Apple s distribution where hand edits to Samba shares are not honored or cause problems. If you edit the /var/samba/shares/myshare file and add, say, read only = yes directive in the file, your edits will be expunged or rewritten when the share is modified again using Server Admin. If you delete the share in Server Admin and add your share information at the end of your /etc/smb.conf file, the testparm command will report errors and you will lose some functionality of Server Admin to modify access. Edit your AFP property list This is far simpler. Using your favorite text editor, edit /Library/Preferences/com.apple.AppleFileServer.plist so that the key kerberosprinciple has the string afpserver/[email protected]. From Server Admin, you can set AFP to permit Kerberos connections exclusively, or you can continue to permit standard authentication mechanisms (Diffie Helman Key Exchange 2) while forcing the user to enter her or his SUNet ID and password. Stanford University, ITS CRC; Draft v.9; Noah Abrahamson [email protected] 2/7/08 (Page 4)
5 Create groups in Open Directory Using Workgroup Manager, authenticate to the /LDAPv3/ domain and create a new group. When adding members to this group, select entities from the /LDAPv3/ldap.stanford.edu domain, and/or the local domains. Create access control lists Using Server Admin, select your share; begin creating granular ACLs by adding your ACEs pulled from any directory. For example, you can allow the ITS People found in the local Open Directory to read the share; the ITS People entity itself may contain users found only in Stanford s OpenLDAP directory. You could also add a singular user entity from OpenLDAP and give her full read/write privileges. You could add a user from the local Open Directory LDAPv3 directory and give him admin rights to the share. Finally, you may wish to grant full access to an account found only in the /Local/Default directory (an account created in System Preferences). Test from Vista, XP and Mac OS X From a Vista or XP workstation, connect to your Mac server. If your PC has been added to Active Directory, you will likely be logging in using your SUNet ID and password (your WIN domain credentials). You will not need to re authenticate to access the shares for which you have permission. If your PC has not been added to AD, you will get a prompt for your username and password; enter WIN\sunetid as the username. On the Mac, connect via the Finder to your server using AFP. Mac users cannot connect via SMB. If properly configured, you should be able to connect to the same sharepoint using AFP on a Mac and SMB/CIFS via Windows. Files open on one machine using one protocol should prohibit changes attempted by another machine using a different protocol. Security considerations You must take extra measures to secure your server from unauthorized access. By default, new shares created using Server Admin are created with traditional Unix permissions of 775 and root:admin for owner and group. Since the world octet refers to any user in any directory (including Stanford s OpenLDAP directory), your files may be unintentionally exposed to the whole campus. You may wish to use Service Access Controls to allow/disallow access via a protocol, or you may wish to set permissions on each sharepoint to 770 or 750, or use TCP wrappers, or deny access connections outside a network using ipfw2. A combination of these measures is recommended. Stanford University, ITS CRC; Draft v.9; Noah Abrahamson [email protected] 2/7/08 (Page 5)
6 Questions and answers Does this work with Mac OS X 10.4 Server? I haven t tried it, but I doubt it. Why not bind your Mac server to Active Directory and use the so called magic triangle configuration? There is a bug in Apple s Samba distribution preventing some cross realm authentication mechanisms. Stanford s unique AD environment presents specific challenges. When your bind your Mac to AD, the Macs OS wants to create a keytab with service principles based on information from the AD domain controllers. To the DCs your Mac may have a name like, myserver.su.win.stanford.edu thus your service principles look like, cifs/[email protected]. When the server tries to resolve the name myserver.su.win.stanford.edu it will consult the campus BIND name servers (where it fails, because its FQDN is really myserver.stanford.edu ). Kerberos thus fails. Why not just use NTLMv2 instead of Kerberos? There s another bug in Samba: When a Vista client attempts to connect to your Mac server, it initially presents its Kerberos credentials. Instead of gracefully falling back to NTLMv2, the Vista client is denied altogether. Windows XP, on the other hand, works properly, as it may be trying to offer NTMLv2 first. Why can t Macs use SMB/CIFS to connect to the Mac server? I m not entirely sure. It requires a level understanding of spnego that I don t have. I recently bound a Mac to AD and tried to connect via SMB and it didn t work. I didn t pursue it further. AppleTalk is [ ]. Do I really have to enable it? You couldn t enable AppleTalk if you wanted to. It s not supported in Mac OS X. And AFP is not AppleTalk over IP either. (Alright that s not entirely accurate. A certain AppleTalk sub protocol, called printer access protocol or PAP, is still commonly used for communicating with printers on a local network. That s all that s left of AppleTalk.) Besides, you really want your Macs to use AFP and not SMB. It s mature and stable; it supports a full suite of nice things, like large file support, dynamic and robust reconnections from sleeping computers, Unicode long names, and so on. Do Windows workstations need to be added to the domain first? No. Standalone Windows computers need only to present WIN domain credentials or a Kerberos TGT to connect. Stanford University, ITS CRC; Draft v.9; Noah Abrahamson [email protected] 2/7/08 (Page 6)
7 Do I need to pre configure my Mac workstations? No. When connecting via AFP, users need only provide their SUNet ID and password to connect. If the server administrator permits only Kerberos authentication, your users will need to have installed a proper edu.mit.kerberos file (available by installing the Essential Stanford Software components). Can t I compile Samba from the project s website and install that? Go nuts. You ll want to get it from Apple s open source Darwin project however. There are lots of little Apple things to take into account, like that odsam passdb backend and the HFS+ filesystem. I really want to plug in external groups into my Open Directory groups for really hands off access provisioning. Can I do that? I don t think so, but it d be nice. I don t know enough about the university s OpenLDAP configuration to answer that, but out of the box, I can t see groups when bound to this directory. There are privgroups, which is what we want, but I don t know how to map those. Stanford University, ITS CRC; Draft v.9; Noah Abrahamson [email protected] 2/7/08 (Page 7)
Instructions for Adding a MacOS 10.4.x Client to ASURITE
Instructions for Adding a MacOS 10.4.x Client to ASURITE Before beginning, it would be prudent not to have an account with the same username and password as your Active Directory account. For DHCP Workstations:
Integrating Mac OS X 10.6 with Active Directory. 1 April 2010
Integrating Mac OS X 10.6 with Active Directory 1 April 2010 Introduction Apple Macintosh Computers running Mac OS X 10.6 can be integrated with the Boston University Active Directory to allow use of Active
Mac OS X Directory Services
Mac OS X Directory Services Agenda Open Directory Mac OS X client access Directory services in Mac OS X Server Redundancy and replication Mac OS X access to other directory services Active Directory support
Other documents in this series are available at: servernotes.wazmac.com
Wazza s Snow Leopard Server QuickStart 14. Win XP - Workgroup Setup About the Document This document is the fourteenth in a series of documents describing the process of installing and configuring a Mac
Wazza s QuickStart 17. Leopard Server - Blogs & Wikis
Wazza s QuickStart 17. Leopard Server - Blogs & Wikis About this Document This document is the 17th in a series of documents describing the process of installing and configuring a Mac OS X 10.5 Server
Instructions for Adding a MacOS 10.4.x Server to ASURITE for File Sharing. Installation Section
Instructions for Adding a MacOS 10.4.x Server to ASURITE for File Sharing Installation Section Purpose: We are setting up a server in ASU s specific environment. Power on the Server Insert the CD Hold
Enterprise Apple Xserve Wiki and Blog using Active Directory. Table Of Contents. Prerequisites 1. Introduction 1
Table Of Contents Prerequisites 1 Introduction 1 Making the Xserve an Open Directory Master 2 Binding the Xserve to Active Directory 3 Creating a Certificate 3 Setting up Apache Web Server 4 Applying the
Centralized Mac Home Directories On Windows Servers: Using Windows To Serve The Mac
Making it easy to deploy, integrate and manage Macs, iphones and ipads in a Windows environment. Centralized Mac Home Directories On Windows Servers: Using Windows To Serve The Mac 2011 ENTERPRISE DEVICE
Wazza s QuickStart 10. Leopard Server - Managing Preferences
Wazza s QuickStart 10. Leopard Server - Managing Preferences About this Document This document is the 10th in a series of documents describing the process of installing and configuring a Mac OS X 10.5
This chapter describes how to set up and manage VPN service in Mac OS X Server.
6 Working with VPN Service 6 This chapter describes how to set up and manage VPN service in Mac OS X Server. By configuring a Virtual Private Network (VPN) on your server you can give users a more secure
Wazza s QuickStart 13. Leopard Server - Windows Domain
Wazza s QuickStart 13. Leopard Server - Windows Domain About the Document This document is the 13th in a series of documents describing the process of installing and configuring a Mac OS X 10.5 Server
Sentral servers provide a wide range of services to school networks.
Wazza s QuickStart File Sharing for Macs on a Sentral Server Mac OS X, Sentral Background Sentral servers provide a wide range of services to school networks. One of those services is a space for sharing
Distributed File System
Petru Maior University, Târgu-Mureș Science Department Information Technolgy Master Course Distributed File System Students: Bardosi Florin Cifor Crina Danciu Ioana Hintea Dan Alexandru Table of Contents
Creating Home Directories for Windows and Macintosh Computers
ExtremeZ-IP Active Directory Integrated Home Directories Configuration! 1 Active Directory Integrated Home Directories Overview This document explains how to configure home directories in Active Directory
The Best of Both Worlds Sharing Mac Files on Windows Servers
The Best of Both Worlds Sharing Mac Files on Windows Servers March, 2008 1110 North Glebe Road Suite 450 Arlington, VA 22201 phone: 800.476.8781 or +1.703.528.1555 fax: +1.703.527.2567 or +1.703.528.3296
Other documents in this series are available at: servernotes.wazmac.com
Wazza s Snow Leopard Server QuickStart 2. Configuring DNS About this Document This document is the second in a series of documents describing the process of installing and configuring a Mac OS X 10.6 Server
6) Click the lock in the lower left corner of the Directory Utility Window and authenticate with the local administrator account s credentials.
Configuring Active Directory Binding for OS X (10.5.x) within Miami Dade Schools Directory Utility determines which directory services a Mac OS X computer uses and how it connects to specific directory
Setting Up Scan to SMB on TaskALFA series MFP s.
Setting Up Scan to SMB on TaskALFA series MFP s. There are three steps necessary to set up a new Scan to SMB function button on the TaskALFA series color MFP. 1. A folder must be created on the PC and
Open Directory & OpenLDAP. David M. O Rourke Engineering Manager
Open Directory & OpenLDAP David M. O Rourke Engineering Manager Overview Background on Apple s Open Directory Technology (8 minutes) What is it What is Directory Services How has Apple integrated OpenLDAP
Best Practices: Integrating Mac OS X with Active Directory. Technical White Paper April 2009
Best Practices: Integrating Mac OS X Technical White Paper April 2009 2 Contents Page 3 Page 5 Page 9 Page 10 Page 11 Page 12 Apple s Built-In Solution How to Integrate Mac OS X Getting Started dsconfigad
File Services. File Services at a Glance
File Services High-performance workgroup and Internet file sharing for Mac, Windows, and Linux clients. Features Native file services for Mac, Windows, and Linux clients Comprehensive file services using
Wazza s QuickStart 1. Leopard Server - Install & Configure DNS
Wazza s QuickStart 1. Leopard Server - Install & Configure DNS About this Document This document is the first in a series of documents describing the process of installing and configuring a Mac OS X 10.5
Apple Certified Specialist - Directory Services ACS-DS 10.6
Apple Certified Specialist - Directory Services ACS-DS 10.6 NOTEBOOK Apple Certified Specialist Directory Services 10.6 8 Disclaimer 8 Accessing the Local Directory Service 9 1. Define the following terms:
The question becomes, How does the competent Windows IT professional open up their print server to their Mac clients?
INTRODUCTION With the number of Macs growing, especially in the academic and consumer fields the need to support them has become a must have for many existing Windows environments. The question becomes,
WINDOWS 7 & HOMEGROUP
WINDOWS 7 & HOMEGROUP SHARING WITH WINDOWS XP, WINDOWS VISTA & OTHER OPERATING SYSTEMS Abstract The purpose of this white paper is to explain how your computers that are running previous versions of Windows
Configuring Active Directory Binding for OS X (10.4.x) within Miami Dade Schools
Configuring Active Directory Binding for OS X (10.4.x) within Miami Dade Schools 1) Login to the Mac OS X (10.4.x) workstation with a local administrative account. 2) Open (double-click) the hard drive
Working Together - Your Apple Mac and Microsoft Windows
Contains information about complex concepts and /or requires technical knowledge to get the most out of the article. Aimed at the more experienced / ambitious ICT manager or accidental techie. Working
Freshservice Discovery Probe User Guide
Freshservice Discovery Probe User Guide 1. What is Freshservice Discovery Probe? 1.1 What details does Probe fetch? 1.2 How does Probe fetch the information? 2. What are the minimum system requirements
How To Set Up A Macintosh With A Cds And Cds On A Pc Or Macbook With A Domain Name On A Macbook (For A Pc) For A Domain Account (For An Ipad) For Free
Setting Up a Macintosh For Use In The Medical Center The purpose of this document is to provide some assistance and direction to the users of Macintosh computers in The Medical Center network environment.
Windows Services. Support Windows and mixed-platform workgroups with high-performance, affordable network services. Features
Windows Services Support Windows and mixed-platform workgroups with high-performance, affordable network services. Features File and print services Integrated Samba 3 for native SMB/CIFS protocol support
Installation Overview
Contents Installation Overview... 2 How to Install Ad-Aware Management Server... 3 How to Deploy the Ad-Aware Security Solutions... 5 General Deployment Conditions... 5 Deploying Ad-Aware Management Agent...
NetIQ Advanced Authentication Framework - MacOS Client
NetIQ Advanced Authentication Framework - MacOS Client Installation Guide Version 5.2.0 1 Table of Contents 1 Table of Contents 2 Introduction 3 About This Document 3 About MacOS Client 4 System Requirements
Cloud Server powered by Mac OS X. Getting Started Guide. Cloud Server. powered by Mac OS X. AKJZNAzsqknsxxkjnsjx Getting Started Guide Page 1
Getting Started Guide Cloud Server powered by Mac OS X Getting Started Guide Page 1 Getting Started Guide: Cloud Server powered by Mac OS X Version 1.0 (02.16.10) Copyright 2010 GoDaddy.com Software, Inc.
1. Installation Overview
Quick Install Guide 1. Installation Overview Thank you for selecting Bitdefender Business Solutions to protect your business. This document enables you to quickly get started with the installation of Bitdefender
Intel Entry Storage System SS4200-E Active Directory Implementation and Troubleshooting
Intel Entry Storage System SS4200-E Active Directory Implementation and Troubleshooting 1 Active Directory Overview SS4200-E Active Directory is based on the Samba 3 implementation The SS4200-E will function
Remote Terminal Service (RTS) User Guide (Version 2.1)
Remote Terminal Service (RTS) User Guide (Version 2.1) Page 1 Table of Content Content Page 1 Introduction 3 2 Prerequisite 3 3 Logon Corporate Network via Internet 4 4 Download and Install RTS Client
Macintosh Clients and Windows Print Queues
Macintosh Clients and Windows Print Queues OS X Maverick, Lion Mountain, Leopard, Tiger, and Panther Pre-Configuration Requirements Ensure Macintosh machines have a valid Host A and PTR records in your
Mac OS X. Playing nice in a heterogeneous world PRESENTED BY:Charles Edge 318.COM
Mac OS X Playing nice in a heterogeneous world PRESENTED BY:Charles Edge 318.COM Whoami Charles Edge, MCSE, CCNA, ACSA, Network+ Partner, Three18 - Consulting firm in Santa Monica, California Author, Mac
INTRODUCING SAMBA 4 NOW, EVEN MORE AWESOMENESS
INTRODUCING SAMBA 4 NOW, EVEN MORE AWESOMENESS Samba 4 has been in development for a long time but an official first release is imminent, the developers say. Its biggest feature is Active Directory Server
Open Directory. Apple s standards-based directory and network authentication services architecture. Features
Open Directory Apple s standards-based directory and network authentication services architecture. Features Scalable LDAP directory server OpenLDAP for providing standards-based access to centralized data
Charles Firth [email protected]. Managing Macs in a Windows World
Charles Firth [email protected] Managing Macs in a Windows World Prerequisites Familiarity with Windows Active Directory networks Interest in Macintosh OSX integration and support Basic understanding
Best Practices: Integrating Mac OS X with Active Directory. Technical White Paper September 2007
Best Practices: with Active Directory Technical White Paper September 2007 Contents Page 3 Page 4 Page 8 Page 10 Page 11 Page 13 Apple s Built-In Solution How to Integrate Mac OS X with Active Directory
Common Internet File System
Common Internet File System Hari Muzumdar September, 2009 Technical Update Days, Germany, 2009 2009 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without
DeployStudio Server Quick Install
DeployStudio Server Quick Install v1.7.0 The DeployStudio Team [email protected] Requirements OS X 10.7.5 to 10.11.1 DeployStudioServer_v1.7.x.pkg and later NetBoot based deployment 100 Mb/s switched
Wazza s QuickStart 15. Leopard Server - Disaster Backup
Wazza s QuickStart 15. Leopard Server - Disaster Backup About the Document This document is the 15th in a series of documents describing the process of installing and configuring a Mac OS X 10.5 Server
LucidNAS Quick Start Guide
LucidNAS Quick Start Guide This section demonstrates the initial preparation that should be performed before you start using the LucidNAS system. Set Administrative Access By default, no password is required
Mac OS X Server. File Services Administration For Version 10.4 or Later
Mac OS X Server File Services Administration For Version 10.4 or Later K Apple Computer, Inc. 2005 Apple Computer, Inc. All rights reserved. The owner or authorized user of a valid copy of Mac OS X Server
Using Samba to play nice with Windows. Bill Moran Potential Technologies
Using Samba to play nice with Windows Bill Moran Potential Technologies SMB (Server Messenger Block) Now called CIFS (Common Internet File System) Historically one of Microsoft's core network protocls,
Active Directory integration with CloudByte ElastiStor
Active Directory integration with CloudByte ElastiStor Prerequisite Change the time and the time zone of the Active Directory Server to the VSM time and time zone. Enabling Active Directory at VSM level
Server External Authentication. FileMaker 9 Product Line
Server External Authentication FileMaker 9 Product Line Table of Contents What is Server External Authentication?...3 Why Use Server External Authentication?...3 Making Server External Authentication work...4
Deploying BitDefender Client Security and BitDefender Windows Server Solutions
Deploying BitDefender Client Security and BitDefender Windows Server Solutions Quick Install Guide Copyright 2011 BitDefender 1. Installation Overview Thank you for selecting BitDefender Business Solutions
Windows Clients and GoPrint Print Queues
Windows Clients and GoPrint Print Queues Overview The following tasks demonstrate how to configure shared network printers on Windows client machines in a Windows Active Directory Domain and Workgroup
Sharing files on Windows XP with Mac OS X clients
apple 1 Getting started Sharing files on Windows XP with Mac OS X clients Do you need to exchange files between Macs and Windows PCs? With built-in support for Windows SMB/CIFS protocol, Mac OS X lets
Active Directory Compatibility with ExtremeZ-IP
Active Directory Compatibility with ExtremeZ-IP A Technical Best Practices White Paper Group Logic White Paper October 2010 About This Document The purpose of this technical paper is to discuss how ExtremeZ-IP
Sentral servers provide a wide range of services to school networks.
Wazza s QuickStart Publishing iweb Sites to a Sentral Server Background Mac OS X, Sentral, iweb 09 Sentral servers provide a wide range of services to school networks. A Sentral server provides a publishing
Deploying BitDefender Client Security and BitDefender Windows Server Solutions
Deploying BitDefender Client Security and BitDefender Windows Server Solutions Quick Install Guide Copyright 2010 BitDefender; 1. Installation Overview Thank you for selecting BitDefender Business Solutions
freesshd SFTP Server on Windows
freesshd SFTP Server on Windows Configuration Steps: Setting up the Bridgestone User ID... 2 Setup the freesshd Server... 3 Login as the Bridgestone User ID using WinSCP... 5 Create Default Bridgestone
Active Directory Compatibility with ExtremeZ-IP. A Technical Best Practices Whitepaper
Active Directory Compatibility with ExtremeZ-IP A Technical Best Practices Whitepaper About this Document The purpose of this technical paper is to discuss how ExtremeZ-IP supports Microsoft Active Directory.
Apple Technical White Paper Best Practices for Integrating OS X with Active Directory
Best Practices for Integrating OS X with Active Directory OS X Mountain Lion v10.8 Contents Introduction... 3 How to Integrate OS X with Active Directory... 4 Enterprise Integration Challenges... 7 Deployment
Field Description Example. IP address of your DNS server. It is used to resolve fully qualified domain names
DataCove DT Active Directory Authentication In Active Directory (AD) authentication mode, the server uses NTLM v2 and LDAP protocols to authenticate users residing in Active Directory. The login procedure
The Mac OS X Server Essentials v10.5 Exam Skills Assessment Guide
The Mac OS X Server Essentials v10.5 Exam Skills Assessment Guide To Register This exam is offered at Apple Authorized Training Centers and Prometric Testing Centers worldwide. For information on exam
Step-by-step installation guide for monitoring untrusted servers using Operations Manager ( Part 3 of 3)
Step-by-step installation guide for monitoring untrusted servers using Operations Manager ( Part 3 of 3) Manual installation of agents and importing the SCOM certificate to the servers to be monitored:
Review Quiz 1. What is the stateful firewall that is built into Mac OS X and Mac OS X Server?
----------------------------- Chapter 1 PLANNING SYSTEM 1. What is the formal definition of utilization? 2. Name the common units in which heat load is measured. 3. What is the easiest way to determine
How To Set Up Egnyte For Netapp Sync For Netapp
Egnyte Storage Sync For NetApp Installation Guide Introduction... 2 Architecture... 2 Key Features... 3 Access Files From Anywhere With Any Device... 3 Easily Share Files Between Offices and Business Partners...
HYPERLINK Internet PC setup guide. HYPERLINK Internet support helpdesk at 1-866-302-5525.
HYPERLINK Internet support helpdesk at 1-866-302-5525. Congratulations on your new residence and welcome to HYPERLINK Internet service. In a few short moments you will be connected to one of the fastest
Attunity RepliWeb PAM Configuration Guide
Attunity RepliWeb PAM Configuration Guide Software Version 5.2 For Linux and UNIX operating systems June 28, 2012 RepliWeb, Inc., 6441 Lyons Road, Coconut Creek, FL 33073 Tel: (954) 946-2274, Fax: (954)
The following process allows you to configure exacqvision permissions and privileges for accounts that exist on an Active Directory server:
Ubuntu Linux Server & Client and Active Directory 1 Configuration The following process allows you to configure exacqvision permissions and privileges for accounts that exist on an Active Directory server:
Samba in the Enterprise : Samba 3.0 and beyond
Samba in the Enterprise : Samba 3.0 and beyond By Jeremy Allison [email protected] [email protected] Where we are now : Samba 2.2 The current Samba is a credible replacement for a Windows server providing
Mac OS X Server Open Directory Administration Version 10.6 Snow Leopard
Mac OS X Server Open Directory Administration Version 10.6 Snow Leopard KKApple Inc. 2009 Apple Inc. All rights reserved. The owner or authorized user of a valid copy of Mac OS X Server software may reproduce
Single Sign-On Using SPNEGO
Single Sign-On Using SPNEGO Introduction As of Percussion CM Server version 7.0.2, build 201106R01, patch level RX-17069, Windows Single Sign-On (SSO) using SPNEGO is now supported. Through the SSO feature,
FAQ. How does the new Big Bend Backup (powered by Keepit) work?
FAQ How does the new Big Bend Backup (powered by Keepit) work? Once you establish which of the folders on your hard drive you ll be backing up, you ll log into myaccount.bigbend.net and from your control
TROUBLESHOOTING INFORMATION
TROUBLESHOOTING INFORMATION VinNOW Support does not support Microsoft products to include SQL Server,.NET Framework, and also cannot assist with Windows User issues, Network or VPN issues. If installing
3CX IP PBX with Twilio Elastic SIP Trunking Interconnection Guide
3CX IP PBX with Twilio Elastic SIP Trunking Interconnection Guide Hello and welcome to our guide on how to set up a 3CX IP PBX for use with Twilio s Elastic SIP Trunking service. This guide covers the
Apple Technical White Paper Best Practices for Integrating OS X with Active Directory
Best Practices for Integrating OS X with Active Directory OS X Mavericks v10.9 Contents Introduction... 4 How to Integrate OS X with Active Directory... 5 Enterprise Integration Challenges... 8 Deployment
Test Case 3 Active Directory Integration
April 12, 2010 Author: Audience: Joe Lowry and SWAT Team Evaluator Test Case 3 Active Directory Integration The following steps will guide you through the process of directory integration. The goal of
RELEASE NOTES. Release Notes. Introduction. Platform. Product/version/build: Remote Control 11.00 (2012027) ActiveX Guest 11.
Release Notes Product/version/build: Remote Control 11.00 (2012027) ActiveX Guest 11.00 (2012027) Shipping date: RELEASE NOTES 30 th January 2012 Introduction These release notes contain information relating
Getting Started With. Mac OS X Server. Includes installation and setup information for Mac OS X Server version 10.2
Getting Started With Mac OS X Server Includes installation and setup information for Mac OS X Server version 10.2 K Apple Computer, Inc. 2002 Apple Computer, Inc. All rights reserved. Under the copyright
Synology NAS Server Windows ADS FAQ 2008-11-14
Synology NAS Server Windows ADS FAQ 2008-11-14 2008-11-14 2008 Synology Inc. All Rights Reserved. 1 Synology Inc. 2008 Synology Inc. All rights reserved. No part of this publication may be reproduced,
Client for Macintosh
Client for Macintosh Installation Instructions Sequencher Server Network Overview Page 2 Installing the KeyAccess Client Page 3 Logging on to the Server on OSX Page 4 Logging on to the Server in Classic
Single sign-on websites with Apache httpd: Integrating with Active Directory for authentication and authorization
Single sign-on websites with Apache httpd: Integrating with Active Directory for authentication and authorization Michael Heldebrant Solutions Architect, Red Hat Outline Authentication overview Basic LDAP
Contents. Supported Platforms. Event Viewer. User Identification Using the Domain Controller Security Log. SonicOS
SonicOS User Identification Using the Domain Controller Security Log Contents Supported Platforms... 1 Event Viewer... 1 Configuring Group Policy to Enable Logon Audit... 2 Events in Security Log... 4
FreeIPA Cross Forest Trusts
Alexander Bokovoy Andreas Schneider May 10th, 2012 1 FreeIPA What is FreeIPA? Cross Forest Trusts 2 Samba 3 Demo Talloc Tutorial Pavel Brezina wrote Talloc tutorial! http://talloc.samba.org/
Univention Corporate Server. Operation of a Samba domain based on Windows NT domain services
Univention Corporate Server Operation of a Samba domain based on Windows NT domain services 2 Table of Contents 1. Components of a Samba domain... 4 2. Installation... 5 3. Services of a Samba domain...
v7.8.2 Release Notes for Websense Content Gateway
v7.8.2 Release Notes for Websense Content Gateway Topic 60086 Web Security Gateway and Gateway Anywhere 12-Mar-2014 These Release Notes are an introduction to Websense Content Gateway version 7.8.2. New
Centralized Mac Home Directories with ExtremeZ-IP
APPLICATION NOTE Centralized Mac Home Directories with ExtremeZ-IP Published: July 2009 Abstract Organizations wanting to integrate Mac OS X systems into their Windows-based enterprise network will most
How To Configure A Bomgar.Com To Authenticate To A Rdius Server For Multi Factor Authentication
Security Provider Integration RADIUS Server 2015 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property
Phone Inventory 1.0 (1000) Installation and Administration Guide
Phone Inventory 1.0 (1000) Installation and Administration Guide 2010 VoIP Integration June 23, 2010 Table of Contents Product Overview... 3 Requirements... 3 Application Requirements... 3 Call Manager...
Guideline for setting up a functional VPN
Guideline for setting up a functional VPN Why do I want a VPN? VPN by definition creates a private, trusted network across an untrusted medium. It allows you to connect offices and people from around the
INFUSION BUSINESS SOFTWARE Installation and Upgrade Guide
INFUSION BUSINESS SOFTWARE Installation and Upgrade Guide 27/01/2016 Published by Infusion Business Software Ltd All Rights Reserved Copyright Infusion Business Software Ltd 2012 Copyright No part of this
ILTA HANDS ON Securing Windows 7
Securing Windows 7 8/23/2011 Table of Contents About this lab... 3 About the Laboratory Environment... 4 Lab 1: Restricting Users... 5 Exercise 1. Verify the default rights of users... 5 Exercise 2. Adding
Parallels Plesk Panel
Parallels Plesk Panel Copyright Notice Parallels Holdings, Ltd. c/o Parallels International GMbH Vordergasse 49 CH8200 Schaffhausen Switzerland Phone: +41 526320 411 Fax: +41 52672 2010 Copyright 1999-2011
