Microsoft windows network drivers

Содержание
  1. Navigating the Network Driver Design Guide
  2. Network Profile Overview
  3. Популярные Hardware drivers загрузки
  4. Microsoft JDBC Driver 4.1 for SQL Server Microsoft JDBC Driver 4.1 for SQL Server —>
  5. Драйвер Microsoft JDBC 7.0 для SQL Server Драйвер Microsoft JDBC 7.0 для SQL Server —>
  6. Поставщик OLE DB для DB2 (Майкрософт) версии 6.0 Поставщик OLE DB для DB2 (Майкрософт) версии 6.0 —>
  7. Microsoft JDBC Driver 4.2 for SQL Server Microsoft JDBC Driver 4.2 for SQL Server —>
  8. Драйвер Microsoft JDBC 8.2 для SQL Server Драйвер Microsoft JDBC 8.2 для SQL Server —>
  9. Microsoft JDBC Driver 7.4 for SQL Server Microsoft JDBC Driver 7.4 for SQL Server —>
  10. Драйвер Microsoft JDBC 6.2 для SQL Server Драйвер Microsoft JDBC 6.2 для SQL Server —>
  11. Драйвер Microsoft JDBC 7.0 для SQL Server Драйвер Microsoft JDBC 7.0 для SQL Server —>
  12. Microsoft® ODBC Driver 13.1 for SQL Server® — Windows, Linux и macOS Microsoft® ODBC Driver 13.1 for SQL Server® — Windows, Linux и macOS —>
  13. Драйвер Microsoft® ODBC 11 для SQL Server® — Windows Драйвер Microsoft® ODBC 11 для SQL Server® — Windows —>
  14. Hardware drivers category page Microsoft Download Center
  15. Microsoft 365
  16. What will you do?
  17. Surface Pro
  18. Popular Hardware drivers downloads
  19. Microsoft® ODBC Driver 13.1 for SQL Server® — Windows, Linux, & macOS
  20. Surface Pro 4 Drivers and Firmware
  21. Surface Pro 3
  22. Surface Pro 7 Drivers and Firmware
  23. Microsoft® OLE DB Driver 18 for SQL Server®
  24. Surface Dock 2 Firmware and Drivers
  25. Surface Book 2 Drivers and Firmware
  26. Microsoft® ODBC Driver 17 for SQL Server® — Windows, Linux, & macOS
  27. Surface Pro 6 Drivers and Firmware
  28. Surface Book Drivers and Firmware

Navigating the Network Driver Design Guide

Microsoft Windows-based operating systems support several types of kernel-mode network drivers. The Network section of the Windows Driver Kit (WDK) documentation describes how to write these network drivers. This topic briefly describes the supported types of network drivers and explains which sections of the Network section you should read before writing each type of network driver.

This network driver design guide documents the following Network Driver Interface Specification (NDIS) interfaces:

NDIS 6.40, which is supported on WindowsВ 8.1, Windows ServerВ 2012В R2, and later versions of Windows. NDIS 6.30 includes support for Network Direct Kernel Provider Interface (NDKPI) 1.12.

For more information about NDIS 6.30, see Introduction to NDIS 6.40.

NDIS 6.30, which is supported on WindowsВ 8, Windows ServerВ 2012, and later versions of Windows. NDIS 6.30 includes support for single root/I/O virtualization (SR-IOV), Hyper-V extensible switch, Network Direct Kernel Provider Interface (NDKPI) 1.1, and other services.

For more information about NDIS 6.30, see Introduction to NDIS 6.30.

NDIS 6.20, which is supported on WindowsВ 7, Windows ServerВ 2008В R2, and later versions of Windows. NDIS 6.20 includes support for Virtual Machine Queue (VMQ), receive side throttle, and other services.

For more information about NDIS 6.20, see Introduction to NDIS 6.20.

NDIS 6.1, which is supported on WindowsВ Vista with Service PackВ 1 (SP1), Windows ServerВ 2008, and later versions of Windows. NDIS 6.1 includes support for header-data split, direct OID requests, and other services.

For more information about NDIS 6.1, see Introduction to NDIS 6.1.

NDIS 6.0, which is supported on WindowsВ Vista and later versions of Windows. NDIS 6.0 includes support for filter drivers and many additional services that were not provided by earlier NDIS versions. NDIS 6.0 includes major updates to driver initialization and network data management including required support for driver reconfiguration at runtime and the NET_BUFFER architecture for handling network packet data. For more information about supporting runtime reconfiguration, see Driver Stack Management. For more information about how to handle network packet data in NDIS 6.0 see NET_BUFFER Architecture.

Читайте также:  Windows media player troubleshooters что это

For more information about NDIS 6.0, see Introduction to NDIS 6.0.

WindowsВ Vista and later operating system versions support the following types of kernel-mode NDIS-based network drivers:

Miniport Drivers
A miniport driver manages miniport adapters and provides an interface to the adapters for higher-level drivers. A miniport adapter is a conceptual entity that can represent either a physical device or a virtual device. For example, a miniport adapter can represent a network interface card (NIC) or a virtual device that is associated with an intermediate driver.

There are many variations of miniport drivers, such as a connection-oriented miniport call manager (MCM), a Windows Driver Model (WDM) miniport driver, and the upper edge of an intermediate driver.

Protocol Drivers
A protocol driver provides high-level services in a driver stack. A protocol driver binds to underlying miniport adapters. An upper-level protocol driver implements an interface, possibly an application-specific interface, at its upper edge to provide services to users of the network. At its lower edge, a protocol driver provides a protocol interface to pass network data to and receive incoming data from the next-lower driver.

There are many variations of protocol drivers, such as a connection-oriented call manager (MCM), a connection-oriented client, and the lower edge of an intermediate driver.

Filter Drivers
A filter driver filters information on the interface between protocol drivers and miniport drivers. Filter modules are attached in the binding between the protocol driver and the miniport adapter and are generally transparent to the other drivers. Filter drivers can implement modifying or monitoring filters. For example, a filter driver can enhance the services that the underlying miniport adapter provides or simply collect statistics.

Intermediate Drivers
An intermediate driver interfaces between upper-level protocol drivers and miniport drivers. Intermediate drivers provide a miniport driver interface at their upper-edge to bind to overlying protocol drivers. Intermediate drivers provide a protocol driver interface at their lower edge to bind to underlying miniport adapters. Intermediate drivers are typically used to implement n to m multiplexer services. For example, an intermediate driver can implement load balance and failover solutions.

Intermediate drivers can also manage hardware when they are configured as a miniport-intermediate driver.

For more information about the Windows network architecture and programming considerations, see Network Architecture for Kernel-Mode Drivers and Network Driver Programming Considerations.

For more information about network INF files, which are used to install network components, see Installing Network Components. If your network driver requires a notify object—for example, to control bindings—also see Notify Objects for Network Components.

The following additional driver models are available to use particular hardware technologies and architectures.

Networking technologies that support the offload of tasks to a network adapter, such as the following:

Header-Data Split, a service that splits the header and the data in received Ethernet frames into separate buffers.

Receive Side Scaling, a network driver technology that improves network performance on multiprocessor systems.

TCP Chimney Offload, an offload of the data-transfer part of the TCP protocol processing to a network adapter that has the appropriate capabilities.

TCP/IP Offload, an offload of tasks or connections to a network adapter that has the appropriate capabilities.

Network Direct Kernel Provider Interface (NDKPI), which enables kernel-mode Windows components, such as SMB server and client, to use remote direct memory access (RDMA) functionality that is provided by independent hardware vendors (IHVs).

Network Virtualization using Generic Routing Encapsulation (NVGRE) Task Offload, which makes it possible to use Generic Routing Encapsulation (GRE)-encapsulated packets with:

  • Large Send Offload (LSO)
  • Virtual Machine Queue (VMQ)
  • Transmit (Tx) checksum offload
  • Receive (Rx) checksum offload

Networking technologies that support Hyper-V virtualization environments, such as the following:

Networking capabilities that include Native 802.11 Wireless LAN.

A system facility that allows a driver to attach network modules to one another.

A kernel-mode Network Programming Interface (NPI).

A set of utility functions that enable drivers to retrieve and modify information about the network configuration of the local computer.

A kernel-mode interface that enables deep inspection, packet modification, stream modification, and logging of network data.

A type of network connection that uses Windows Sockets Direct to support a high-performance, connection-oriented network.

A class specification that defines a system-provided, bus-independent message set over a USB bus.

Network Profile Overview

A network profile defines the attributes for a connection to a basic service set (BSS) network. Network profiles consist of XML data fragments. For Windows Vista, a network profile contains the following XML fragments.

Profile Name (required)
The name of the network profile, which is the service set identifier (SSID) of the BSS network.

Standard 802.11 Connectivity Settings (required)
This XML fragment consists of standard 802.11 settings for network connectivity, such as the BSS network type (infrastructure or independent) or type of wireless LAN (WLAN) security. The operating system processes the standard connectivity settings and configures the wireless WLAN adapter with them.

IHV Connectivity Extensions (optional)
This XML fragment consists of the extensions to network connectivity as defined by the IHV. The operating system passes the connectivity extensions to the IHV Extensions DLL for processing. The DLL is responsible for configuring the WLAN adapter with the proprietary extensions.

Standard 802.11 Security Settings (optional)
This XML fragment consists of the standard 802.11 authentication and cipher settings, such as the type of authentication and cipher algorithm to use on the BSS network connection. The operating system processes the standard security settings and configures the WLAN adapter with them.

IHV Security Extensions (optional)
This XML fragment consists of the extensions to network security as defined by the IHV. The IHV extensions can specify either of the following:

Standard security settings.

For the WLAN adapter that is managed by the IHV Extensions DLL, the DLL is responsible for the security algorithms, such as the Robust Security Network Association ( RSNA) authentication algorithm or the AES-CCMP cipher algorithm. The operating system is no longer responsible. In this situation, the IHV Extensions DLL can either process the algorithms or provide proprietary methods for offloading the processing to the WLAN adapter.

Proprietary security settings.

The IHV Extensions DLL can provide support for security algorithms not supported by the operating system, such as non-standard or proprietary algorithms. The DLL is responsible for processing the algorithms or provide proprietary methods for offloading the processing to the WLAN adapter.

For more information about the Native 802.11 XML schema, refer to the Microsoft Windows SDK documentation.

Популярные Hardware drivers загрузки

Microsoft JDBC Driver 4.1 for SQL Server Microsoft JDBC Driver 4.1 for SQL Server —>

Скачайте драйвер Microsoft JDBC 4.1 для SQL Server — драйвер JDBC типа 4, который обеспечивает обмен данными с базами данных через стандартные API-интерфейсы JDBC, доступные на платформе Java Enterprise Edition.

Драйвер Microsoft JDBC 7.0 для SQL Server Драйвер Microsoft JDBC 7.0 для SQL Server —>

Скачайте драйвер Microsoft JDBC 7.0 для SQL Server — драйвер JDBC типа 4, который обеспечивает обмен данными с базами данных через стандартные API-интерфейсы JDBC, доступные на платформе Java Enterprise Edition.

Поставщик OLE DB для DB2 (Майкрософт) версии 6.0 Поставщик OLE DB для DB2 (Майкрософт) версии 6.0 —>

Поставщик OLE DB для DB2 (Майкрософт) версии 6.0

Microsoft JDBC Driver 4.2 for SQL Server Microsoft JDBC Driver 4.2 for SQL Server —>

Скачайте драйвер Microsoft JDBC 4.2 для SQL Server — драйвер JDBC типа 4, который обеспечивает обмен данными с базами данных через стандартные API-интерфейсы JDBC, доступные на платформе Java Enterprise Edition.

Драйвер Microsoft JDBC 8.2 для SQL Server Драйвер Microsoft JDBC 8.2 для SQL Server —>

Скачайте драйвер Microsoft JDBC 8.2 для SQL Server — драйвер JDBC типа 4, который обеспечивает обмен данными с базами данных через стандартные API-интерфейсы JDBC, доступные на платформе Java Enterprise Edition.

Microsoft JDBC Driver 7.4 for SQL Server Microsoft JDBC Driver 7.4 for SQL Server —>

Скачайте драйвер Microsoft JDBC 7.4 для SQL Server — драйвер JDBC типа 4, который обеспечивает обмен данными с базами данных через стандартные API-интерфейсы JDBC, доступные на платформе Java Enterprise Edition.

Драйвер Microsoft JDBC 6.2 для SQL Server Драйвер Microsoft JDBC 6.2 для SQL Server —>

Скачайте драйвер Microsoft JDBC 6.2 для SQL Server — драйвер JDBC типа 4, который обеспечивает обмен данными с базами данных через стандартные API-интерфейсы JDBC, доступные на платформе Java Enterprise Edition.

Драйвер Microsoft JDBC 7.0 для SQL Server Драйвер Microsoft JDBC 7.0 для SQL Server —>

Скачайте драйвер Microsoft JDBC 7.0 для SQL Server — драйвер JDBC типа 4, который обеспечивает обмен данными с базами данных через стандартные API-интерфейсы JDBC, доступные на платформе Java Enterprise Edition.

Microsoft® ODBC Driver 13.1 for SQL Server® — Windows, Linux и macOS Microsoft® ODBC Driver 13.1 for SQL Server® — Windows, Linux и macOS —>

Microsoft ODBC Driver for SQL Server имеет встроенную поддержку подключения из Windows, Linux и macOS к Microsoft SQL Server и базам данных SQL Microsoft Azure.

Драйвер Microsoft® ODBC 11 для SQL Server® — Windows Драйвер Microsoft® ODBC 11 для SQL Server® — Windows —>

Драйвер Microsoft ODBC для SQL Server обеспечивает собственную возможность подключения к Microsoft SQL Server из Windows.

Hardware drivers category page Microsoft Download Center

Microsoft 365

Premium Office apps, extra cloud storage, advanced security, and more—all in one convenient subscription

What will you do?

Office 365 unlocks the potential of your device, and brings out the best in you

Surface Pro

The most versatile laptop

Microsoft® ODBC Driver 13.1 for SQL Server® — Windows, Linux, & macOS

The Microsoft ODBC Driver for SQL Server provides native connectivity from Windows, Linux, & macOS to Microsoft SQL Server and Microsoft Azure SQL Database.

Surface Pro 4 Drivers and Firmware

All current drivers and firmware for the Surface Pro 4; including optional WinTab drivers

Surface Pro 3

All current software, firmware, and drivers for the Surface Pro 3; including optional WinTab drivers

Surface Pro 7 Drivers and Firmware

All current drivers and firmware for the Surface Pro 7

Microsoft® OLE DB Driver 18 for SQL Server®

This page is no longer maintained. Please read the details below.

Surface Dock 2 Firmware and Drivers

All current software, firmware, and drivers for the Surface Dock 2

Surface Book 2 Drivers and Firmware

All current drivers and firmware for the Surface Book 2

Microsoft® ODBC Driver 17 for SQL Server® — Windows, Linux, & macOS

This page is no longer maintained. Please read the details below.

Surface Pro 6 Drivers and Firmware

All current drivers and firmware for the Surface Pro 6

Surface Book Drivers and Firmware

All current drivers and firmware for the Surface Book; including optional WinTab drivers

Читайте также:  Михаил шигорин alt linux
Оцените статью
Technology Description