2019-04-11 23:50:43 +01:00
|
|
|
# create_ap
|
|
|
|
|
|
|
|
> Create an AP (Access Point) at any channel.
|
|
|
|
|
|
|
|
- Create an open network with no passphrase:
|
|
|
|
|
2019-04-15 01:15:07 +01:00
|
|
|
`create_ap {{wlan0}} {{eth0}} {{access_point_ssid}}`
|
2019-04-11 23:50:43 +01:00
|
|
|
|
|
|
|
- Use a WPA + WPA2 passphrase:
|
|
|
|
|
2019-04-15 01:15:07 +01:00
|
|
|
`create_ap {{wlan0}} {{eth0}} {{access_point_ssid}} {{passphrase}}`
|
2019-04-11 23:50:43 +01:00
|
|
|
|
|
|
|
- Create an access point without Internet sharing:
|
|
|
|
|
2019-04-15 01:15:07 +01:00
|
|
|
`create_ap -n {{wlan0}} {{acces_point_ssid}} {{passphrase}}`
|
2019-04-11 23:50:43 +01:00
|
|
|
|
|
|
|
- Create a bridged network with Internet sharing:
|
|
|
|
|
2019-04-15 01:15:07 +01:00
|
|
|
`create_ap -m bridge {{wlan0}} {{eth0}} {{access_point_ssid}} {{passphrase}}`
|
2019-04-11 23:50:43 +01:00
|
|
|
|
|
|
|
- Create a bridged network with Internet sharing and a pre-configured bridge interface:
|
|
|
|
|
2019-04-15 01:15:07 +01:00
|
|
|
`create_ap -m bridge {{wlan0}} {{br0}} {{access_point_ssid}} {{passphrase}}`
|
2019-04-11 23:50:43 +01:00
|
|
|
|
|
|
|
- Create an access port for Internet sharing from the same WiFi interface:
|
|
|
|
|
2019-04-15 01:15:07 +01:00
|
|
|
`create_ap {{wlan0}} {{wlan0}} {{access_point_ssid}} {{passphrase}}`
|
2019-04-11 23:50:43 +01:00
|
|
|
|
|
|
|
- Choose a different WiFi adapter driver:
|
|
|
|
|
2019-04-15 01:15:07 +01:00
|
|
|
`create_ap --driver {{wifi_adapter}} {{wlan0}} {{eth0}} {{access_point_ssid}} {{passphrase}}`
|