blob: ba7fe88d3fe7e2f9192c77a5f9789e090a686722 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
---
title: "network"
date: 2017-01-17T09:14:00
date_display: Jan 17, 2017
---
# Créer une interface WIFI
## Récupérer le nom de l'interface
```sh
# rfkill list
```
## Créer une interface
```sh
//phy <phyname> interface add <name> type <type> [mesh_id <meshid>] [4addr on|off] [flags <flag>*] [addr <mac-addr>]
# iw phy phy0 interface add wlp3s0 type managed addr 12:34:56:78:ab:cd
```
# NAT
Voir la note sur le [nat](/notes/2017-03-23-nat.html)
# Bridge
Voir l'exemple de [Creation and configuration of the bridge interface with archlinux](/notes/2017-03-23-rc_khaganat_project.html)
|