Mayank Desai's CCNA Notes

   

Configuring a Catalyst 1900 Switch

This page covers configuring a Cisco Catalyst 1900 Switch from the command line interface.  This is the method that is tested on the CCNA 2.0 test, but you should know that you can also configure the switch from a Menu (runs on the command line) or you can use the Web interface (set the IP address on the Switch and enter the IP address in a web browser on a client to access the Switch's configuration web pages).

Setting Hostname, IP Address, and DFGW

You set these items the same way as for a router.  The exception is that the IP address is for the entire device as opposed to a router, which has addresses for each interface.  You should also know that you can telnet to a switch but you can't telnet from it.

   > enable
   # conf t
   Enter configuration commands, one per line.  End with CNTL/Z.
   (config)# hostname Switch1
   Swicth1(config)# ip address 192.168.1.75 255.255.255.224
   Switch1(config)# ip default-gateway 192.168.1.65
   Switch1(config)# ip domain-name foo.org

Viewing the IP Information

Use the show ip user Exec command to display global Internet Protocol (IP) configuration information.
   Switch1# show ip
 
   IP Address:192.168.1.75
   Subnet Mask:255.255.255.224
   Default Gateway:192.168.1.65
   Management VLAN: 1
   Domain name: foo.org
   Name server 1:192.168.1.70
   Name server 2:0.0.0.0
   HTTP server :Enabled
   HTTP port : 80
   RIP :Enabled

Setting Passwords

Use the enable password <1-15> <password> global configuration command to set unencrypted user Exec or privileged Exec passwords.  Level 1-14 is for user Exec privileges while Level 15 is for privileged Exec privileges.  The Password is a noncase-sensitive string of between 4 and 8 characters, spaces, and punctuation (except double quotes).  Password strings with blank spaces must be enclosed in double quotes.

   Switch1(config)# enable password level 1 "CcNa 2.0"
   Switch1(config)# enable password level 15 CiScO123
Enable Secret Password

Use the enable secret global configuration command to set encrypted user Exec or privileged Exec passwords.  The enable secret password is used in place of the enable password if it is set since the enable secret password is encrypted and therefore more secure.

   Switch1(config)# enable secret PaSs&oRd

Interfaces

Use the interface type slot/port global configuration command to choose an interface type and to enter interface configuration mode.

   Switch1(config)# interface ethernet 0/5
   Switch1(config-if)#
Setting the Interface Description

While in interface configuration mode you can use the description string command to set a description for an interface.  The description can be from 1 to 80 alphanumeric characters.  Use double quotes to enclose strings with spaces.

   Switch1(config-if)# description "Marketing VLAN"
Set the Port's Duplex

Use the duplex {auto | full | full-flow-control | half} interface configuration command to enable duplex mode for an interface.

Syntax Description:
auto Auto-negotiation of duplex mode.
full Full-duplex mode.
full-flow-control Force full-duplex mode with flow control.
half Half-duplex mode.

Example:
   Switch1(config-if)# duplex full

Show Version

This example shows how to display the switch hardware and firmware versions accessible from privileged Exec mode for the Catalyst 1900 switch.

   Switch1# show version
 
   Cisco Catalyst 1900/2820 Enterprise Edition Software
   Version V9.00.00(12)
   Copyright (c) Cisco Systems, Inc.  1993-1999
   Switch1 uptime is 2day(s) 22hour(s) 50minute(s) 21second(s) 
   cisco Catalyst 1900 (486sxl) processor with 2048K/1024K bytes of memory
   Hardware board revision is 1
   Upgrade Status: No upgrade currently in progress. 
   Config File Status: No configuration upload/download is in progress 
   27 Fixed Ethernet/IEEE 802.3 interface(s)
   Base Ethernet Address: 00-E0-1E-7E-BE-80
   Switch1#

MAC Address Tables

Since layer 2 switches use MAC addresses to filter network traffic, it stands to reason that you can control MAC related functions.  A Catalyst 1900 switch can store up to 1024 MAC addresses in its filter table.  When the filter table is full, the switch will flood the network with all new incoming frames until one of the existing addresses in the table expires and is removed.  To view the table of MAC addresses, use the following command:

   Switch1#show mac-address-table
    
   Number of permanent addresses :0
   Number of restricted static addresses :0
   Number of dynamic addresses :9
 
   Address           Dest Interface    Type         Source Interface List
   ----------------------------------------------------------------------------------
   00D0.5868.F583    FastEthernet 2    Dynamic      All
   00E0.1E74.6ADA    FastEthernet 1    Dynamic      All
   00E0.1E74.6AC0    FastEthernet 1    Dynamic      All
   0060.47D5.2770    FastEthernet 2    Dynamic      All
   00D0.5868.F580    FastEthernet 2    Dynamic      All
   00D0.5868.C8C0    FastEthernet 2    Dynamic      All
   00D0.5868.EF00    FastEthernet 2    Dynamic      All
   00E0.1E74.6080    FastEthernet 2    Dynamic      All
   00D0.C0F5.5B80    FastEthernet 2    Dynamic      All
 
Clearing the MAC Address Table

If clear mac-address-table is invoked with no options, all dynamic addresses are removed.  If you specify an address but do not specify an interface, the address is deleted from all interfaces.  If you specify an interface but do not specify an address, all addresses on the specified interface are removed.

   Switch1#clear mac-address-table
Setting Static MAC Addresses

Use the mac-address-table restricted static global configuration command to associate a restricted static address with a particular switched port interface (specified as type module/port).  Use the no mac-address-table restricted static command to delete a restricted static address.

The following example shows how to configure a packet with MAC address of 0040.C80A.2F07 to come in on either Ethernet interface 1 or Ethernet interface 2 and be forwarded to the Fast Ethernet interface 27.

   Switch1(config)#mac-address-table restricted static 0040.C80A.2F07 f0/27 e0/1 e0/2 
Setting Permanent MAC Addresses

Use the mac-address-table permanent global configuration command to associate a permanent unicast or multicast MAC address with a particular switched port interface (specified by type and module/port).  Use the no mac-address-table permanent command to delete a permanent MAC address.  This example shows how to specify that packets with the multicast destination address 0140.C80A.2F07 should be forwarded on the Fast Ethernet interface 27.

   Switch1(config)# mac-address-table permanent 0140.C80A.2F07 fastethernet 0/27
Using Port Security

Use the port secure interface configuration command to enable addressing security.  Use the no port secure command to disable addressing security or to set the maximum number of addresses allowed on the interface to the default value.  The default is 132, but can be from 1 to 132.  The following example shows how to set the maximum MAC address count to 100 on the ethernet slot 0 port four interface.

   Switch# conf t
   Switch1(config)# interface ethernet 0/4 
   Switch1(config-if)# port secure max-mac-count 100

Upgrading/ Restoring the IOS for a Catalyst 1900

You can upgrade or restore the IOS, but you can't back it up on Catalyst 1900 switches.  To copy an IOS from a TFTP host use the following command.

Syntax:
   copy tftp://tftp_host's_address/IOS_filename opcode
Example:
   Switch1#copy tftp://192.168.1.70/cat1900EN_9_.bin opcode

Backing Up and Restoring the Catalyst 1900's Configuration

The configuration file is called nvram on a 1900 switch.  To copy the file to a TFTP host, use the following command:

Syntax:
   copy nvram tftp://tftp_host's_address/config_name
Example:
   Switch1#copy nvram tftp://192.168.1.70/1900en 
To restore the file from a TFTP host to the switch, use the following command:

Syntax:
   copy tftp://tftp_host's_address/config_name nvram
Example:
   Switch1#copy tftp://192.168.1.70/1900en nvram

Deleting the Startup-Configuration

To delete the startup-config (nvram), use the following command:

   Switch1#delete nvram

Change the LAN Switch Type

You can view the switch type with the privileged EXEC command show port system.  To change the switch's switch type, use the following command:

   Switch1(config)#switching-type ?
   fragment-free       Fragment Free mode
   store-and-forward   Store-and-Forward mode
   
   Switch1(config)#switching-type store-and-forward
Back | home
 |CCNA Notes | MCSE Notes| Home

Managing and Maintaining a Microsoft Windows Server 2003 Environment

Using an Unattended Answer File, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Using the System Preparation Tool, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Using Remote Installation Services, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Windows Server 2003 Licensing, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Software Installation and Maintenance Technology, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Acquiring and Modifying Software Packages, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Deploying Software Packages, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Assigning Software Packages, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Publishing Software Packages, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Deploying .zap Files, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Upgrading Software, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Mandatory Upgrades, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Optional Upgrades, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Redeploying Software, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Removing or Disabling Software, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Deploying Service Packs and Hotfixes, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Installing Service Packs and Hotfixes, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Removing a Service Pack or Hotfix, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Slipstreaming Service Packs and Hotfixes, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Adding Service Packs and Hotfixes to a Network Installation Share, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Installing Multiple Hotfixes, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Microsoft Software Update Services, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Windows Update, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Windows Update Catalog, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Automatic Updates, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Software Update Services, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

The Windows Server 2003 Boot Process, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Preboot Sequence, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Boot Sequence, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Kernel Load, MCSE Boot Camp for MCSE Certification MCSE Bootcamp Training MCSE

Kernel Initialization, MCSE Boot Camp for MCSE Certification MCSE Bootcamp Training MCSE

The Session Manager, MCSE Boot Camp for MCSE Certification MCSE Bootcamp Training MCSE

MCSE Boot Camp for MCSE Certification MCSE Bootcamp Training MCSE, The Boot.ini File

Components of the Boot.ini File, MCSE Boot Camp for MCSE Certification MCSE Bootcamp Training MCSE

Computing (ARC) paths pointing to the computer's boot partition, MCSE Boot Camp for MCSE Certification MCSE Bootcamp Training MCSE

Boot.ini Switches, MCSE Boot Camp for MCSE Certification MCSE Bootcamp Training MCSE

Advanced Boot Options, MCSE Boot Camp for MCSE Certification MCSE Bootcamp Training MCSE

The Recovery Console, MCSE Boot Camp for MCSE Certification MCSE Bootcamp Training MCSE

Installing and Starting the Recovery Console, MCSE Boot Camp for MCSE Certification MCSE Bootcamp Training MCSE

Using the Recovery Console, MCSE Boot Camp for MCSE Certification MCSE Bootcamp Training MCSE

Installing New Hardware, MCSE Boot Camp for MCSE Certification MCSE Bootcamp Training MCSE

Using Driver Signing, MCSE Boot Camp for MCSE Certification MCSE Bootcamp Training MCSE

Configuring Driver Signing, MCSE Boot Camp for MCSE Certification MCSE Bootcamp Training MCSE

The File Signature Verification Utility, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Configuring Hard Disks, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Converting to Dynamic Disk Status, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Creating Simple Volumes, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Creating Spanned Volumes, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Creating Striped Volumes, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Creating Mirrored Volumes, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Creating Striped Volumes with Parity RAID-5 Volumes, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Configuring File Systems, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Encrypting File System (EFS), MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Encrypting Files Across the Network, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Encrypted File Recovery, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Volume Mounting, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

File Compression, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Copying and Moving Compressed Files and Folders, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Defragmenting Volumes and Partitions, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Backing Up and Restoring Data, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Backup Types, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Backing Up System State Data, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Restoring Files and Folders, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Restoring Active Directory Directory Services, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Failed Domain Controllers, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Damaged Active Directory Databases, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Authoritative Restores, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Automated System Recovery, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Adding Additional CPUs, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Adding Removable Media Drives, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Peer-to-Peer networks, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Creating Network Connections, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Automatic IP Addressing, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

DHCP Addressing, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Name Resolution, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

NetBIOS Name Resolution, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Host Name Resolution, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Domain Name Space, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

DNS Zones, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Active Directory Integrated Stores, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Windows Server 2003 network, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Active Directory Support for Client Computers, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Contiguous namespace. The name of the child object in an object hierarchy, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Domain Controllers, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Domain Functional Levels, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Controlling Access to Active Directory Objects, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Delegating Administrative Control, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Publishing Resources, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Setting Up and Managing Published Printers, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Installing Printer Drivers, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Setting Up and Managing Published Shared Folders, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Auditing Access to Active Directory Objects, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Microsoft Internet Information Services, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

deploying IIS on multiple servers, MCSE Boot Camp for MCSE Certification MCSE Training Bootcamp

Using Configure Your Server Wizard and Add or Remove Programs to Install IIS, MCSE Boot Camp training for MCSE Certification MCSE

Unattended Installation, MCSE Boot Camp training for MCSE Certification MCSE

Defining Home Directories, MCSE Boot Camp training for MCSE Certification MCSE

Virtual Directories, MCSE Boot Camp training for MCSE Certification MCSE

Hosting Multiple Web Sites, MCSE Boot Camp training for MCSE Certification MCSE

Enabling Web Service Extensions, MCSE Boot Camp training for MCSE Certification MCSE

Managing IIS 6.0, MCSE Boot Camp training for MCSE Certification MCSE

Process Accounting, MCSE Boot Camp training for MCSE Certification MCSE

Backing Up and Restoring IIS, MCSE Boot Camp training for MCSE Certification MCSE

Distributed File System, MCSE Boot Camp training for MCSE Certification MCSE

Security, MCSE Boot Camp training for MCSE Certification MCSE

Authentication, MCSE Boot Camp training for MCSE Certification MCSE

Controlling Access, MCSE Boot Camp training for MCSE Certification MCSE

Encryption, MCSE Boot Camp training for MCSE Certification MCSE

Using Scripting to Manage Website Content, MCSE Boot Camp training for MCSE Certification MCSE

Reroute Requests with Redirects, MCSE Boot Camp training for MCSE Certification MCSE

Operators Group, MCSE Boot Camp training for MCSE Certification MCSE

Administering Sites Remotely, MCSE Boot Camp training for MCSE Certification MCSE

Terminal Services, MCSE Boot Camp training for MCSE Certification MCSE

Terminal Services Components, MCSE Boot Camp training for MCSE Certification MCSE

Remote Desktop for Administration, MCSE Boot Camp training for MCSE Certification MCSE

Web-Based Administration, MCSE Boot Camp training for MCSE Certification MCSE

Remote Assistance, MCSE Boot Camp training for MCSE Certification MCSE

Requesting Assistance, MCSE Boot Camp training for MCSE Certification MCSE

Using Windows Messenger to Request Assistance, MCSE Boot Camp training for MCSE Certification MCSE

Using E-Mail to Request Assistance, MCSE Boot Camp training for MCSE Certification MCSE

Using a Saved File to Request Assistance, MCSE Boot Camp training for MCSE Certification MCSE

Terminal Server Role, MCSE Boot Camp training for MCSE Certification MCSE

Installing the Terminal Services Role, MCSE Boot Camp training for MCSE Certification MCSE

Installing Terminal Server Licensing, MCSE Boot Camp training for MCSE Certification MCSE

Installing Applications for Terminal Services, MCSE Boot Camp training for MCSE Certification MCSE

Client Software and Installation, MCSE Boot Camp training for MCSE Certification MCSE

Connecting to Terminal Services, MCSE Boot Camp training for MCSE Certification MCSE

The Remote Desktop Connection Utility, MCSE Boot Camp training for MCSE Certification MCSE

The Remote Desktops Snap-In, MCSE Boot Camp training for MCSE Certification MCSE

Administering Terminal Services, MCSE Boot Camp training for MCSE Certification MCSE

Troubleshooting Terminal Services, MCSE Boot Camp training for MCSE Certification MCSE

Automatic Logon, MCSE Boot Camp training for MCSE Certification MCSE

Initial Program Launching, MCSE Boot Camp training for MCSE Certification MCSE

License Problems, MCSE Boot Camp training for MCSE Certification MCSE

Creating and Managing User and Computer Accounts, MCSE Boot Camp training for MCSE Certification MCSE

Local User Accounts, MCSE Boot Camp training for MCSE Certification MCSE

Domain User Accounts, MCSE Boot Camp training for MCSE Certification MCSE

Built-In User Accounts, MCSE Boot Camp training for MCSE Certification MCSE

Administrator - MCSE Boot Camps, MCSE Boot Camp training for MCSE Certification MCSE

Guest, MCSE Boot Camp training for MCSE Certification MCSE

Help Assistant, MCSE Boot Camp training for MCSE Certification MCSE

Support_388945a0 account credentials instead of the users credentials to perform specific administrative, MCSE Boot Camp training for MCSE Certification MCSE

Computer Accounts, MCSE Boot Camp training for MCSE Certification MCSE

Creating Computer Accounts, MCSE Boot Camp training for MCSE Certification MCSE

Creating Local User Accounts, MCSE Boot Camp training for MCSE Certification MCSE

Creating Domain User Accounts, MCSE Boot Camp training for MCSE Certification MCSE

Copying Domain User Accounts, MCSE Boot Camp training for MCSE Certification MCSE

Modifying User Accounts and Computer Accounts, MCSE Boot Camp training for MCSE Certification MCSE

Group Accounts, MCSE Boot Camp training for MCSE Certification MCSE

Group Scope, MCSE Boot Camp training for MCSE Certification MCSE

Group Nesting, MCSE Boot Camp training for MCSE Certification MCSE

Creating Groups, MCSE Boot Camp training for MCSE Certification MCSE

Adding a User to a Group, MCSE Boot Camp training for MCSE Certification MCSE

Configuring Password Policy, MCSE Boot Camp training for MCSE Certification MCSE

Configuring Account Lockout Policy, MCSE Boot Camp training for MCSE Certification MCSE

Managing User Data, MCSE Boot Camp training for MCSE Certification MCSE

Using User Profiles, MCSE Boot Camp training for MCSE Certification MCSE

Roaming User Profiles, MCSE Boot Camp training for MCSE Certification MCSE

Mandatory User Profiles, MCSE Boot Camp training for MCSE Certification MCSE

Group Policy Objects, MCSE Boot Camp training for MCSE Certification MCSE

Group Policy Settings for Computers and Users, MCSE Boot Camp training for MCSE Certification MCSE

Linking Group Policy Objects, MCSE Boot Camp training for MCSE Certification MCSE

Group Policy Inheritance, MCSE Boot Camp training for MCSE Certification MCSE

Order of Application, MCSE Boot Camp training for MCSE Certification MCSE

Controlling the Processing of Group Policy, MCSE Boot Camp training for MCSE Certification MCSE

Refreshing Group Policy at Established Intervals, MCSE Boot Camp training for MCSE Certification MCSE

Resolving Conflicts Between Group Policy Settings, MCSE Boot Camp training for MCSE Certification MCSE

Managing user environment, MCSE Boot Camp training for MCSE Certification MCSE

Administrative Templates, MCSE Boot Camp training for MCSE Certification MCSE

Desktop Security Settings, MCSE Boot Camp training for MCSE Certification MCSE

Group Policy Script Settings, MCSE Boot Camp training for MCSE Certification MCSE

Folder Redirection, MCSE Boot Camp training for MCSE Certification MCSE

Software Deployment, MCSE Boot Camp training for MCSE Certification MCSE

Controlling Access to Network Resources, MCSE Boot Camp training for MCSE Certification MCSE

NTFS Folder Permissions, MCSE Boot Camp training for MCSE Certification MCSE

NTFS File Permissions, MCSE Boot Camp training for MCSE Certification MCSE

Multiple NTFS Permissions, MCSE Boot Camp training for MCSE Certification MCSE

Cumulative Permissions, MCSE Boot Camp training for MCSE Certification MCSE

The Deny Permission, MCSE Boot Camp training for MCSE Certification MCSE

NTFS Permissions Inheritance, MCSE Boot Camp training for MCSE Certification MCSE

Assigning Special Access Permissions, MCSE Boot Camp training for MCSE Certification MCSE

Changing Permissions, MCSE Boot Camp training for MCSE Certification MCSE

Taking Ownership, MCSE Boot Camp training for MCSE Certification MCSE

Copying and Moving Files and Folders, MCSE Boot Camp training for MCSE Certification MCSE

Troubleshooting NTFS Permission Problems, MCSE Boot Camp training for MCSE Certification MCSE

Shared Folder Permissions, MCSE Boot Camp training for MCSE Certification MCSE

Combining Shared Folder Permissions and NTFS Permissions, MCSE Boot Camp training for MCSE Certification MCSE

Monitoring Network Resources, MCSE Boot Camp training for MCSE Certification MCSE

Monitoring Access to Shared Folders, MCSE Boot Camp training for MCSE Certification MCSE

Monitoring Shared Folders, MCSE Boot Camp training for MCSE Certification MCSE

Modifying Shared Folder Properties, MCSE Boot Camp training for MCSE Certification MCSE

Monitoring Open Files, MCSE Boot Camp training for MCSE Certification MCSE

Disconnecting Users from Open Files, MCSE Boot Camp training for MCSE Certification MCSE

Monitoring Network Users, MCSE Boot Camp training for MCSE Certification MCSE

Monitoring User Sessions, MCSE Boot Camp training for MCSE Certification MCSE

Disconnecting Users, MCSE Boot Camp training for MCSE Certification MCSE

Auditing - mcse boot camp, MCSE Boot Camp training for MCSE Certification MCSE

Using an Audit Policy, MCSE Boot Camp training for MCSE Certification MCSE

Using Event Viewer to View Security Logs, MCSE Boot Camp training for MCSE Certification MCSE

Setting Up Auditing, MCSE Boot Camp training for MCSE Certification MCSE

Auditing Object Access win2003, MCSE Boot Camp training for MCSE Certification MCSE

Auditing Access to Files and Folders, MCSE Boot Camp training for MCSE Certification MCSE

Auditing Access to Printers, MCSE Boot Camp training for MCSE Certification MCSE

Using Event Viewer, MCSE Boot Camp training for MCSE Certification MCSE

Viewing Security Logs, MCSE Boot Camp training for MCSE Certification MCSE

Locating Events, MCSE Boot Camp training for MCSE Certification MCSE

Managing Audit Logs, MCSE Boot Camp training for MCSE Certification MCSE

Using Group Policy, MCSE Boot Camp training for MCSE Certification MCSE

The Shutdown Event Tracker, MCSE Boot Camp training for MCSE Certification MCSE

Monitoring System Performance, MCSE Boot Camp training for MCSE Certification MCSE

The System Monitor, MCSE Boot Camp training for MCSE Certification MCSE

Adding Performance Counters, MCSE Boot Camp training for MCSE Certification MCSE

Performance Logs and Alerts, MCSE Boot Camp training for MCSE Certification MCSE

Counter Logs and Tracer Logs, MCSE Boot Camp training for MCSE Certification MCSE

Alerts, MCSE Boot Camp training for MCSE Certification MCSE

Using Task Manager to Monitor Performance, MCSE Boot Camp training for MCSE Certification MCSE

Command-Line Monitoring Tools, MCSE Boot Camp training for MCSE Certification MCSE

The Logman Utility, MCSE Boot Camp training for MCSE Certification MCSE

The relog Utility, MCSE Boot Camp training for MCSE Certification MCSE

The typeperf Utility, MCSE Boot Camp training for MCSE Certification MCSE

Installing and Deploying Windows Server 2003, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Installing Windows Server 2003 from a Network Share, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Installing Windows Server 2003 from the CD-Rom, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

Performing an Unattended Installation, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE

System Requirements, MCSE Boot Camp for MCSE Certification join MCSE Bootcamp Training MCSE