User Manual Orange Pi Zero 3

  Features   |  Use   |    Linux     |  Linux SDK   |  Android   |  Android SRC   |

RU          EN  

Chapt 3. Instructions for use of Debian/Ubuntu Server and Xfce desktop system
Страница:   25    26    27    28    29    30    31    32    33    34    35    36    37    38    39    40    41    42    43    44    45    46    47    48    49    50    51    52    53    54    55    56    57    58    59    60    61    62    63    64    65    66    67    68    69    70    71    72    73    74    75    76    77    78    79    80    81    82    83    84    85    86    87    88    89    90    91    92    93    94    95    96    97    98    99    100    101    102    103    104    105    106    107    108    109    110    111    112    113    114    115    116    117    118    119    120    121    122  


3.7.3. The method of creating WIFI hotspot through create_ap

create_ap is a script that helps quickly create WIFI hotspots on Linux, and supports bridge and NAT modes. It can automatically combine hostapd, dnsmasq and iptables to complete the setting of WIFI hotspots, avoiding complex configuration for users. The github address is as follows: https://github.com/oblique/create_ap

The Linux image released by OPi has pre-installed the create_ap script. You can create a WIFI hotspot through the create_ap command. The basic command format of create_ap is as follows:

create_ap [options] wifi-interface \
[interface-with-internet] \
[access-point-name [passphrase]]

  • * options You can use this parameter to specify the encryption method, the frequency band of the WIFI hotspot, the bandwidth mode, the network sharing method, etc. You can get the options through create_ap -h

  • * wifi-interface The name of the wireless network card

  • * interface-with-internet The name of the network card that can be connected to the Internet, generally eth0

  • * access-point-name hotspot name

  • * passphrase hotspot password

    3.7.3.1 create_ap method to create WIFI hotspot in NAT mode

  • 1) Enter the following command to create a WIFI hotspot named orangepi and password orangepi in NAT mode

    Note that in the following commands, Debian12 needs to change eth0 to end0.

    orangepi@orangepi:~$ sudo create_ap -m nat wlan0 eth0 orangepi orangepi --no-virt

  • 2) If the following information is output, it means that the WIFI hotspot is created successfully

    orangepi@orangepi:~$ sudo create_ap -m nat wlan0 eth0 orangepi orangepi \
    --no-virt Config dir: /tmp/create_ap.wlan0.conf.TQkJtsz1
    PID: 26139
    Network Manager found, set wlan0 as unmanaged device... DONE
    Sharing Internet using method: nat
    hostapd command-line interface: hostapd_cli -p
    /tmp/create_ap.wlan0.conf.TQkJtsz1/hostapd_ctrl
    wlan0: interface state UNINITIALIZED->ENABLED
    wlan0: AP-ENABLED
    wlan0: STA ce:bd:9a:dd:a5:86 IEEE 802. 11: associated
    wlan0: AP-STA-CONNECTED ce:bd:9a:dd:a5:86
    wlan0: STA ce:bd:9a:dd:a5:86 RADIUS: starting accounting session
    D4FBF7E5C604F169
    wlan0: STA ce:bd:9a:dd:a5:86 WPA: pairwise key handshake completed (RSN)
    wlan0: EAPOL-4WAY-HS-COMPLETED ce:bd:9a:dd:a5:86
    

  • 3) Take out the mobile phone at this time, you can find the WIFI hotspot named orangepi created by the development board in the searched WIFI list, and then you can click orangepi to connect to the hotspot, the password is set above orangepi


    Img 3.45

  • 4) After the connection is successful, the display is as shown in the figure below


    Img 3.46

  • 5) In NAT mode, the wireless device connected to the hotspot of the development board requests an IP address from the DHCP service of the development board, so there will be two different network segments, for example, the IP of the development board is 192.168.1.X

    Note that in the following commands, Debian12 needs to change eth0 to end0.

    orangepi@orangepi:~$ sudo ifconfig eth0
    eth0: flags=4163 mtu 1500
    inet 192.168.1.150 netmask 255.255.255.0 broadcast 192.168.1.255
    inet6 fe80::938f:8776:5783:afa2 prefixlen 64 scopeid 0x20 <link>
    ether 4a:a0:c8:25:42:82 txqueuelen 1000 (Ethernet)
    RX packets 25370 bytes 2709590 (2.7 MB)
    RX errors 0 dropped 50 overruns 0 frame 0
    TX packets 3798 bytes 1519493 ( 1.5 MB)
    TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
    device interrupt 83

    By default, the DHCP service of the development board will assign an IP address of 192.168.12.0/24 to the device connected to the hotspot. At this time, click on the connected WIFI hotspot orangepi, and then you can see that the IP address of the mobile phone is 192.168.12.X



    Img 3.47


    Img 3.48

  • 6) If you want to specify a different network segment for the connected device, you can specify it through the -g parameter, such as specifying the network segment of the access point AP through the -g parameter as 192.168.2.1

    Note that in the following commands, Debian12 needs to change eth0 to end0.

    orangepi@orangepi:~$ sudo create_ap -m nat wlan0 eth0 orangepi \
    orangepi -g 192.168.2.1 --no-virt

    At this time, after connecting to the hotspot through the mobile phone, click on the connected WIFI hotspot orangepi, and then you can see that the IP address of the mobile phone is 192.168.2.X.

  • 7) If the --freq-band parameter is not specified, the hotspot created by default is in the 2.4G frequency band. If you want to create a hotspot in the 5G frequency band, you can specify the--freq-band 5 parameter. The specific command is as follows

    Note that in the following commands, Debian12 needs to change eth0 to end0.

    orangepi@orangepi:~$ sudo create_ap -m nat wlan0 eth0 orangepi \
    orangepi --freq-band 5 --no-virt

  • 8) If you need to hide the SSID, you can specify the --hidden parameter, the specific command is as follows

    Note that in the following commands, Debian12 needs to change eth0 to end0.

    orangepi@orangepi:~$ sudo create_ap -m nat wlan0 eth0 orangepi \
    orangepi --hidden --no-virt

    At this time, the mobile phone cannot search for the WIFI hotspot. You need to manually specify the name of the WIFI hotspot and enter the password to connect to the WIFI hotspot.



    Img 3.50

    3.7.3.2 create_ap method to create WIFI hotspot in bridge mode

  • 1) Enter the following command to create a WIFI hotspot named orangepi and password orangepi in bridge mode

    Note that in the following commands, Debian12 needs to change eth0 to end0.

  • 2)If the following information is output, it means that the WIFI hotspot is created successfully
    
    orangepi@orangepi:~$ sudo create_ap -m bridge wlan0 eth0 orangepi orangepi --no-virt
    Config dir: /tmp/create_ap.wlan0.conf.zAcFlYTx
    PID: 27707
    Network Manager found, set wlan0 as unmanaged device... DONE
    Sharing Internet using method: bridge
    Create a bridge interface... br0 created.
    hostapd command-line interface: hostapd_cli -p
    /tmp/create_ap.wlan0.conf.zAcFlYTx/hostapd_ctrl
    wlan0: interface state UNINITIALIZED->ENABLED
    wlan0: AP-ENABLED
    wlan0: STA ce:bd:9a:dd:a5:86 IEEE 802.11: associated
    wlan0: AP-STA-CONNECTED ce:bd:9a:dd:a5:86
    wlan0: STA ce:bd:9a:dd:a5:86 RADIUS: starting accounting session
     937BF40E51897A7B
    wlan0: STA ce:bd:9a:dd:a5:86 WPA: pairwise key handshake completed (RSN)
    wlan0: EAPOL-4WAY-HS-COMPLETED ce:bd:9a:dd:a5:86
    

  • 3) Take out the mobile phone at this time, and you can find the WIFI hotspot named orangepi created by the development board in the searched WIFI list, and then you can click orangepi to connect to the hotspot, and the password is the orangepi set above


    Img 3.52

  • 4) After the connection is successful, the display is as shown in the figure below


    Img 3.47

  • 5) In bridge mode, the wireless device connected to the hotspot of the development board also requests an IP address from the DHCP service of the main router (the router connected to the development board), for example, the IP of the development board is 192.168.1.X

    orangepi@orangepi:~$ sudo ifconfig eth0 eth0: flags=4163 mtu 1500 inet 192.168.1.150 netmask 255.255.255.0 broadcast 192.168.1.255 inet6 fe80::938f:8776:5783:afa2 prefixlen 64 scopeid 0x20 ether 4a:a0:c8:25:42:82 txqueuelen 1000 (Ethernet) RX packets 25370 bytes 2709590 (2.7 MB) RX errors 0 dropped 50 overruns 0 frame 0 TX packets 3798 bytes 1519493 (1.5 MB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 device interrupt 83

    The IP of the device connected to the WIFI hotspot is also assigned by the main router, so the mobile phone connected to the WIFI hotspot and the development board are in the same network segment. At this time, click on the connected WIFI hotspot orangepi, and then you can see the IP address of the mobile phone also 192.168.1.X



    Img 3.47


    Img 3.48

  • 6) If the --freq-band y band. If you want to create a hotspot in the 5G frequency band, you can specify the --freq-band 5 parameter. The specific command is as follows

    Note that in the following commands, Debian12 needs to change eth0 to end0

    orangepi@orangepi:~$ sudo create_ap -m bridge wlan0 eth0 orangepi \
    orangepi --freq-band 5 --no-virt

  • 7) If you need to hide the SSID, you can specify the --hidden parameter, the specific command is as follows

    Note that in the following commands, Debian12 needs to change eth0 to end0.

    orangepi@orangepi:~$ sudo create_ap -m bridge wlan0 eth0 orangepi \
    orangepi --hidden --no-virt

    At this time, the mobile phone cannot search for the WIFI hotspot. You need to manually specify the name of the WIFI hotspot and enter the password to connect to the WIFI hotspot.



    Img 3.51

     <         > 


  • Страница:   25    26    27    28    29    30    31    32    33    34    35    36    37    38    39    40    41    42    43    44    45    46    47    48    49    50    51    52    53    54    55    56    57    58    59    60    61    62    63    64    65    66    67    68    69    70    71    72    73    74    75    76    77    78    79    80    81    82    83    84    85    86    87    88    89    90    91    92    93    94    95    96    97    98    99    100    101    102    103    104    105    106    107    108    109    110    111    112    113    114    115    116    117    118    119    120    121    122