---
title: NEPacketTunnelProvider
framework: networkextension
role: symbol
role_heading: Class
path: networkextension/nepackettunnelprovider
---

# NEPacketTunnelProvider

The principal class for a packet tunnel provider app extension.

## Declaration

```swift
class NEPacketTunnelProvider
```

## Mentioned in

Routing your VPN network traffic

## Overview

Overview The NEPacketTunnelProvider class gives its subclasses access to a virtual network interface via the packetFlow property. Use the setTunnelNetworkSettings(_:completionHandler:) method in the Packet Tunnel Provider to specify that the following network settings be associated with the virtual interface: Virtual IP address DNS resolver configuration HTTP proxy configuration IP destination networks to be routed through the tunnel IP destination networks to be routed outside the tunnel Interface MTU By specifying IP destination networks, the Packet Tunnel Provider can dictate what IP destinations will be routed to the virtual interface. IP packets with matching destination addresses will then be diverted to Packet Tunnel Provider and can be read using the packetFlow property. The Packet Tunnel Provider can then encapsulate the IP packets per a custom tunneling protocol and send them to a tunnel server. When the Packet Tunnel Provider decapsulates IP packets received from the tunnel server, it can use the packetFlow property to inject the packets into the networking stack. important: The com.apple.developer.networking.networkextension entitlement is required in order to use the NEPacketTunnelProvider class. Enable this entitlement when creating an App ID in your developer account. Creating a Packet Tunnel Provider Extension Packet Tunnel Providers run as App Extensions for the com.apple.networkextension.packet-tunnel extension point. To create a Packet Tunnel Provider extension, first create a new App Extension target in your project. For an example of an Xcode build target for this app extension, see the SimpleTunnel: Customized Networking Using the NetworkExtension Framework sample code project. Once you have a Packet Tunnel Provider extension target, create a subclass of NEPacketTunnelProvider. Then, set the NSExtensionPrincipalClass key in the the extension’s Info.plist to the name of your subclass. If it is not already, set the NSExtensionPointIdentifier key in the extension’s Info.plist to com.apple.networkextension.packet-tunnel. Here is an example of the NSExtension dictionary in a Packet Tunnel Provider extension’s Info.plist: <key>NSExtension</key> <dict>     <key>NSExtensionPointIdentifier</key>     <string>com.apple.networkextension.packet-tunnel</string>     <key>NSExtensionPrincipalClass</key>     <string>MyCustomPacketTunnelProvider</string> </dict> Finally, add the Packet Tunnel Provider extension target to your app’s Embed App Extensions build phase. Subclassing Notes In order to create a Packet Tunnel Provider extension, you must create a subclass of NEPacketTunnelProvider and override the methods listed below. Methods to Override startTunnel(options:completionHandler:) stopTunnel(with:completionHandler:)

## Topics

### Managing the tunnel life cycle

- [startTunnel(options:completionHandler:)](networkextension/nepackettunnelprovider/starttunnel(options:completionhandler:).md)
- [stopTunnel(with:completionHandler:)](networkextension/nepackettunnelprovider/stoptunnel(with:completionhandler:).md)
- [cancelTunnelWithError(_:)](networkextension/nepackettunnelprovider/canceltunnelwitherror(_:).md)

### Handling IP packets

- [packetFlow](networkextension/nepackettunnelprovider/packetflow.md)

### Creating network connections through the tunnel

- [createTCPConnectionThroughTunnel(to:enableTLS:tlsParameters:delegate:)](networkextension/nepackettunnelprovider/createtcpconnectionthroughtunnel(to:enabletls:tlsparameters:delegate:).md)
- [createUDPSessionThroughTunnel(to:from:)](networkextension/nepackettunnelprovider/createudpsessionthroughtunnel(to:from:).md)

### Instance Properties

- [virtualInterface](networkextension/nepackettunnelprovider/virtualinterface-7l3ol.md)

## Relationships

### Inherits From

- [NETunnelProvider](networkextension/netunnelprovider.md)

### Inherited By

- [NEEthernetTunnelProvider](networkextension/neethernettunnelprovider.md)

### Conforms To

- [CVarArg](swift/cvararg.md)
- [CustomDebugStringConvertible](swift/customdebugstringconvertible.md)
- [CustomStringConvertible](swift/customstringconvertible.md)
- [Equatable](swift/equatable.md)
- [Hashable](swift/hashable.md)
- [NSObjectProtocol](objectivec/nsobjectprotocol.md)

## See Also

### Packet tunnel provider

- [NETunnelProvider](networkextension/netunnelprovider.md)
- [NEProvider](networkextension/neprovider.md)
- [NEPacketTunnelNetworkSettings](networkextension/nepackettunnelnetworksettings.md)
- [NETunnelNetworkSettings](networkextension/netunnelnetworksettings.md)
- [NEEthernetTunnelProvider](networkextension/neethernettunnelprovider.md)
- [NEEthernetTunnelNetworkSettings](networkextension/neethernettunnelnetworksettings.md)
