mirror of https://github.com/ntop/n2n.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
509 B
13 lines
509 B
5 years ago
|
# n2n on macOS
|
||
|
|
||
|
In order to use n2n on macOS, you first need to install support for TUN/TAP interfaces:
|
||
|
|
||
|
```bash
|
||
|
brew tap homebrew/cask
|
||
|
brew cask install tuntap
|
||
|
```
|
||
|
|
||
|
If you are on a modern version of macOS (i.e. Catalina), the commands above will ask you to enable the TUN/TAP kernel extension in System Preferences → Security & Privacy → General.
|
||
|
|
||
|
For more information refer to vendor documentation or the [Apple Technical Note](https://developer.apple.com/library/content/technotes/tn2459/_index.html).
|