Все переводы

Введите имя сообщения для показа всех доступных переводов.

Сообщение

Найдено 2 перевода.

СообщениеТекущий текст
 ист. английский (en)# Disable hotspot mode.
#: To do this, in the  <code>/etc/default/hostapd</code> file, comment out the line (e.g., add the '''#''' sign at the beginning of the line) <syntaxhighlight lang="bash">#DAEMON_CONF="/etc/hostapd.conf"</syntaxhighlight>
# Edit <code>/etc/network/interfaces</code>:
#* comment out the lines related to the setting in access point mode: <syntaxhighlight lang="bash">
#iface wlan0 inet static
#      address 192.168.42.1
#      netmask 255.255.255.0
</syntaxhighlight>
#* uncomment and edit the lines (or add them if there were none): <syntaxhighlight lang="bash">
auto wlan0
iface wlan0 inet dhcp 
               wpa-ssid {ssid} # replace {ssid} with the name of the hotspot
               wpa-psk  {password} # replace {password} with your own password
</syntaxhighlight>
# To apply the changes, run the following commands
<syntaxhighlight lang="bash">
ifdown wlan0
ifup wlan0
</syntaxhighlight>
 ист. русский (ru)# Отключите режим точки доступа.
#: Для этого в файле <code>/etc/default/hostapd</code> закомментируйте строку (то есть добавьте знак '''#''' в начало строки)<syntaxhighlight lang="bash">#DAEMON_CONF="/etc/hostapd.conf"</syntaxhighlight>
# Отредактируйте <code>/etc/network/interfaces</code>:
#* закомментируйте строки, относящиеся к настройке в режиме точки доступа: <syntaxhighlight lang="bash">
#iface wlan0 inet static
#      address 192.168.42.1
#      netmask 255.255.255.0
</syntaxhighlight>
#* раскомментируйте и отредактируйте строки (или добавьте, если их не было):<syntaxhighlight lang="bash">
auto wlan0
iface wlan0 inet dhcp 
               wpa-ssid {ssid} # вместо {ssid} подставьте имя точки доступа
               wpa-psk  {password} # вместо {password} подставьте пароль
</syntaxhighlight>
# Чтобы применить изменения, выполните команды
<syntaxhighlight lang="bash">
ifdown wlan0
ifup wlan0
</syntaxhighlight>