Page #40 (Y)

ZAK

Stands for Zero Administration Kit, a collection of tools, methodologies, and guidelines developed for Microsoft Windows 95, Windows 98, and Windows NT 4 that network administrators can use to implement policy-based management of Windows NT-based networks.

See Also Zero Administration Kit (ZAK)

Zero Administration Kit (ZAK)

A collection of tools, methodologies, and guidelines developed for Microsoft Windows 95, Windows 98, and Windows NT 4 that network administrators can use to implement policy-based management of Windows NT-based networks.

Overview

Microsoft Corporation developed the Zero Administration Kit (ZAK) as part of their Zero Administration Initiative for Microsoft Windows (ZAW), a multifaceted approach designed to reduce the cost and effort of installing, configuring, and managing desktop workstations. ZAW was intended to provide tools and procedures that would simplify the administration of logons, security, applications, and other functions. The ZAK was the first result of the ZAW initiative, and it enabled administrators of Windows 95-, Windows 98-, and Windows NT 4-based networks to

Implementation

The ZAK employed the security of the NTFS file system (NTFS) along with Windows NT system policies and user profiles. Administrators could use the predefined set of system policies to override default local settings and use standard user profiles to configure and manage users' desktops from a central location. The ZAK included two preconfigured modes of operation, though advanced administrators could also create their own custom network configurations. The default modes were:

Notes

The Windows NT 4 ZAK has now been superseded by Intellimirror and Group Policy features in Windows 2000, Windows XP, and Windows .NET Server. These features provide greater management and control of user desktops and applications than ZAK provided.

For More Information

You can find ZAK at www.microsoft.com/windows/zak.

See Also Group Policy ,IntelliMirror

zone

In AppleTalk networking, a logical grouping of computers on a network.

Overview

A zone is to legacy AppleTalk networks of Apple Macintosh computers what a virtual LAN (VLAN) is to Ethernet networks. In other words, a zone is a logical way of grouping computers together on a network regardless of the physical network segment they each reside upon. For example, a single zone may span several network segments, and multiple zones can be assigned to the same physical network.

Information concerning which zone a particular computer is on is propagated throughout an AppleTalk network using a protocol called the Zone Information Protocol (ZIP). Each computer maintains information about the zones other machines reside in using a local zone information table (ZIT). Administrators can configure which zone a computer belongs to by using the Choose utility on that machine.

Computers that belong to the same zone have access to the same set of shared resources on the network. If a user moves to a different physical network, the user can still belong to the same zone provided the router interface in the user's new location belongs to that zone.

Notes

The term zone is also used to refer to a zone of authority, a portion of the Domain Name System (DNS) namespace that is managed by a particular name server.

See Also AppleTalk ,

zone file

A file on a name server that contains information about a zone in which the name server is authoritative.

Overview

A zone file is a text file consisting of a series of resource records that form the Domain Name System (DNS) database of the name server. These records identify the domain and subdomains that the name server is responsible for managing, Internet Protocol (IP) address to host name mappings for hosts within these domains and subdomains, timing parameters for zone transfers between primary and secondary name servers, and other data.

A name server typically has at least three zone files:

Examples

A typical zone file might look like this:

; Database file microsoft.com.dns for  microsoft.com. zone. @             IN      SOA dns1.microsoft.com.   admin.microsoft.com.               12      ; serial number               3600    ; refresh               600     ; retry               86400   ; expire               3600    ; minimum TTL ; Zone NS records @            IN    NS    dns1 @            IN    NS    dns2 ; Zone A records dns1         IN    A     192.250.100.10 dns2         IN    A     192.250.100.11 proxy1       IN    A     192.250.100.101 fred         IN    A     192.250.100.102 wilma        IN    A     192.250.100.103 localhost    IN    A     127.0.0.1 www          IN    CNAME fred ftp          IN    CNAME wilma

Notes

Microsoft Windows 2000 gives you the option of integrating DNS with Active Directory directory service. This results in zone information being stored in Active Directory, which has several advantages over traditional implementations of DNS such as Berkeley Internet Name Domain (BIND), in which zone data is stored in text files:

See Also Active Directory , Berkeley Internet Name Domain (BIND) ,Domain Name System (DNS) ,IP address ,name server ,resource record (RR) ,

zone of authority

A portion of the Domain Name System (DNS) namespace that is managed by a particular name server.

Overview

A zone of authority (often simply called a zone) is an administrative unit of DNS namespace and can consist of a single DNS domain or a domain combined with some of its subdomains. An example of a domain might be microsoft.com, which might contain the subdomains sales.microsoft.com, support.microsoft.com, and tech.microsoft.com. The name server that administers the microsoft.com domain is said to be authoritative for that domain. The zone of authority for such a name server might be, for example:

Note that the concepts of a zone and a domain are related: each zone is anchored in a specific domain known as the zone's root domain. However, not all of the subdomains of the domain necessarily belong to that same zone; those that have been delegated belong to different zones. Another way of saying this is to say that zones are bounded from one another by delegation-that is, each act of delegation creates a new zone.

Each name server must either

Zone of authority. Examples of zones delegated on the domain name system (DNS) namespace.

or

A single name server can manage one or more zones, depending on how it is configured. For example, a name server might have one zone for the domain microsoft.com and another zone for the domain adventure.expedia.com.

In networks that use Microsoft Windows 2000 and Windows .NET Server, a zone can take yet a third form, called an Active Directory directory-integrated zone. In this type of zone, the zone information is stored in Active Directory directory service instead of in a text file, and it is replicated across the network using the standard directory replication method employed by domain controllers. Windows 2000 DNS also supports dynamic DNS (DDNS) to ease the administrative burden of manually maintaining zone files.

Notes

Do not confuse DNS zones with AppleTalk zones, discussed in the article "zone" elsewhere in this chapter.

See Also Active Directory , Berkeley Internet Name Domain (BIND) ,domain (DNS) ,Domain Name System (DNS) ,dynamic DNS (DDNS) ,IP address ,name server ,

zone transfer

The process of transferring zone information from a primary name server to a secondary name server.

Overview

Zone transfers are an essential part of the operation of the Domain Name System (DNS). Primary name servers maintain the master copy of the zone information for a particular DNS zone of authority, usually in the form of a text file called a zone file. Secondary name servers then download this information from the primary name server authoritative over their zone using the method of zone transfer. The advantages of this approach are that:

Implementation

Zone transfers generally occur in three circumstances:

The secondary name server always initiates a zone transfer. Typically, the secondary name server periodically contacts the primary name server to determine whether any changes have been made to the primary name server's zone file. If so, it initiates a request for a zone transfer. Specifically, when the refresh interval expires on the secondary name server, the following occurs:

  1. The secondary name server requests and receives the SOA record from the primary name server.

  2. The secondary name server compares the version number in the primary name server's SOA record with its own current version number. If they differ, the secondary name server requests a zone transfer from the primary name server.

  3. In standard DNS operation, the entire zone file is then transferred during this process.

    Zone transfer. How a typical zone transfer works.

Notes

DNS as implemented on the Microsoft Windows 2000 and Windows .NET Server platforms allows zone information to be transferred incrementally using updates. In other words, the entire contents of the zone file are not sent when a small change is made to a resource record in the zone file. This method is called incremental zone transfer and is defined in RFC 1995.

An advantage of using directory-integrated DNS zones on Windows 2000 and Windows .NET Server is that the dnsZone object container in Active Directory can be secured using Windows 2000 access control lists (ACLs) for greater security.

See Also Domain Name System (DNS) , incremental zone transfer ,name server ,



Microsoft Encyclopedia of Networking
Microsoft Encyclopedia of Networking
ISBN: 0735613788
EAN: 2147483647
Year: 2002
Pages: 36
Authors: Mitch Tulloch, Ingrid Tulloch
BUY ON AMAZON

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net