From nikolay.kostirya at i11.co Fri Apr 17 14:39:53 2020 From: nikolay.kostirya at i11.co (Nick Kostirya) Date: Fri, 17 Apr 2020 14:39:53 +0300 Subject: [freebsd] =?utf-8?b?ZGVmYXVsdCByb3V0ZXIg0LTQu9GPIHdsYW4g0YHQviA=?= =?utf-8?b?0YHRgtCw0YLQuNGH0LXRgdC60L7QuSBpcA==?= Message-ID: <20200417143953.02929c23@i11.co> ??????. ??????????, ??????????, ??? ????????? ????????? default router ??? wlan ?? ??????????? ip. ? /etc/rc.conf ?????????. defaultrouter="192.168.0.1" ifconfig_wlan0="WPA inet 192.168.0.50 netmask 255.255.255.0" ?? ?????? ??????? routing wpa_supplicant ??? ?? ???????? ??????? ???? ? ??????? ? ???: add net default: gateway 192.168.0.1 fib 0: Network is unreachable DHCP ? ????????? ? MAC ???????????? ?? ???????, ??? ??? ??? USB-WiFi ?? ?????? ???????. From oleg at theweb.org.ua Fri Apr 17 16:41:51 2020 From: oleg at theweb.org.ua (Oleg V. Nauman) Date: Fri, 17 Apr 2020 16:41:51 +0300 Subject: [freebsd] =?utf-8?b?ZGVmYXVsdCByb3V0ZXIg0LTQu9GPIHdsYW4g0YHQviA=?= =?utf-8?b?0YHRgtCw0YLQuNGH0LXRgdC60L7QuSBpcA==?= In-Reply-To: <20200417143953.02929c23@i11.co> References: <20200417143953.02929c23@i11.co> Message-ID: <3737168.BRNeRiNLvY@sigill.theweb.org.ua> On Friday, 17 April 2020 14:39:53 EEST Nick Kostirya wrote: > ??????. > ??????????, ??????????, ??? ????????? ????????? default router ??? wlan ?? > ??????????? ip. > > ? /etc/rc.conf ?????????. > defaultrouter="192.168.0.1" > ifconfig_wlan0="WPA inet 192.168.0.50 netmask 255.255.255.0" > > ?? ?????? ??????? routing wpa_supplicant ??? ?? ???????? ??????? ???? ? > ??????? ? ???: add net default: gateway 192.168.0.1 fib 0: Network is > unreachable ???? ??????? ?????????? ?????? ???????, ?????? ??????? ? /etc/rc.conf ? ???????? #netwait_enable="YES" #netwait_if="wlan0" > > DHCP ? ????????? ? MAC ???????????? ?? ???????, ??? ??? ??? USB-WiFi ?? > ?????? ???????. ? ? ????? ?????? ???????? ? MAC From eugen at grosbein.net Fri Apr 17 16:54:28 2020 From: eugen at grosbein.net (Eugene Grosbein) Date: Fri, 17 Apr 2020 20:54:28 +0700 Subject: [freebsd] =?utf-8?b?ZGVmYXVsdCByb3V0ZXIg0LTQu9GPIHdsYW4g0YHQviA=?= =?utf-8?b?0YHRgtCw0YLQuNGH0LXRgdC60L7QuSBpcA==?= In-Reply-To: <20200417143953.02929c23@i11.co> References: <20200417143953.02929c23@i11.co> Message-ID: 17.04.2020 18:39, Nick Kostirya wrote: > ??????. > ??????????, ??????????, ??? ????????? ????????? default router ??? wlan ?? ??????????? ip. > > ? /etc/rc.conf ?????????. > defaultrouter="192.168.0.1" > ifconfig_wlan0="WPA inet 192.168.0.50 netmask 255.255.255.0" > > ?? ?????? ??????? routing wpa_supplicant ??? ?? ???????? ??????? ???? ? ??????? ? ???: > add net default: gateway 192.168.0.1 fib 0: Network is unreachable > > DHCP ? ????????? ? MAC ???????????? ?? ???????, ??? ??? ??? USB-WiFi ?? ?????? ???????. ? ?????????, ?? ??????? ??????? ???? ?????? ??????????? ??????? ?????? /etc/start_if.wlan0 ?????? ??????????: #!/bin/sh waitfor_wlanif() { local _i _s ifconfig_up "$1" _i=30 while [ $_i -gt 0 ] do _s=$(ifconfig "$1" | awk '/status:/ {print $2}') [ "$_s" = associated ] && break _i=$(($_i - 1)) sleep 1 done return 0 } waitfor_wlanif "$1" # EOF ??? ????????, ????????? ?????? ? ????? ??????, ????????? ??????? ???????? ??? ????? ??????? "?????" . ??????? ? ???? ???? ?????? ? ?????????? ???????? ????????? ?????????? ???????? ? ?? ????? ??????? ??????? ifconfig_up ??? ??????????, ??????? ??? ??????? ??????? ????????????? ????????? ? ????????? ??? ???? wpa_supplicant ??? ??????. ????? ????? ?????? ?? 30 ?????? ????, ???? ?????????? ?? ??????????? ? ????? ??????? ? ????? ????? ??? ???????? ????????? ?????????. ? ????? ??????? ???? ????????? ???????: ifconfig_up ????? ?????? ???????? ???????? ????????? ? ???????? wpa_supplicant ??? ???, ?? ?????? ????? ??????, ??? ??? ?????????? ?????????? ??? ???????, ???????? ?? ??????? ? ??????, ??? ??? ?????? ?? ?????. From bag-misc at zurbagan.org Fri Apr 17 16:59:33 2020 From: bag-misc at zurbagan.org (Andrey Blochintsev) Date: Fri, 17 Apr 2020 16:59:33 +0300 Subject: [freebsd] =?koi8-r?b?ZGVmYXVsdCByb3V0ZXIgxMzRIHdsYW4g088g09TB1Mne?= =?koi8-r?b?xdPLz8ogaXA=?= In-Reply-To: <20200417143953.02929c23@i11.co> References: <20200417143953.02929c23@i11.co> Message-ID: <20200417135933.GB35795@zurbagan.org> Hi! On Fri, Apr 17, 2020 at 14:39 +0300, Nick Kostirya wrote: > ?? ?????? ??????? routing wpa_supplicant ??? ?? ???????? ??????? ???? ? ??????? ? ???: ??? ??????? - ????? ??????????? ????????? ????????? IP ? ??????????: ifconfig_wlan0_alias0="WPA" ifconfig_wlan0="inet 192.168.0.50 netmask 255.255.255.0" From eugen at grosbein.net Fri Apr 17 17:11:41 2020 From: eugen at grosbein.net (Eugene Grosbein) Date: Fri, 17 Apr 2020 21:11:41 +0700 Subject: [freebsd] =?utf-8?b?ZGVmYXVsdCByb3V0ZXIg0LTQu9GPIHdsYW4g0YHQviA=?= =?utf-8?b?0YHRgtCw0YLQuNGH0LXRgdC60L7QuSBpcA==?= In-Reply-To: <20200417135933.GB35795@zurbagan.org> References: <20200417143953.02929c23@i11.co> <20200417135933.GB35795@zurbagan.org> Message-ID: 17.04.2020 20:59, Andrey Blochintsev ?????: >> ?? ?????? ??????? routing wpa_supplicant ??? ?? ???????? ??????? ???? ? ??????? ? ???: > > ??? ??????? - ????? ??????????? ????????? ????????? IP ? ??????????: > > ifconfig_wlan0_alias0="WPA" > ifconfig_wlan0="inet 192.168.0.50 netmask 255.255.255.0" ??? ?? ?????????, ??? ??? ????? WPA ?? ?????? ????? ???????. ? ???? ???? ?? ? ?????????, ??? ????? ?? ?????? ?? ????????? ????????: race ????? ??????? wpa_supplicant (? ??????, ???????? ??????????? ? AP) ? rcorder, ??????? ???????? ??? ?? ???????? ????????? /etc/rc.d/routing ?? ??????? ??????????? ? AP. From bag-misc at zurbagan.org Fri Apr 17 17:24:54 2020 From: bag-misc at zurbagan.org (Andrey Blochintsev) Date: Fri, 17 Apr 2020 17:24:54 +0300 Subject: [freebsd] =?koi8-r?b?ZGVmYXVsdCByb3V0ZXIgxMzRIHdsYW4g088g09TB1Mne?= =?koi8-r?b?xdPLz8ogaXA=?= In-Reply-To: References: <20200417143953.02929c23@i11.co> <20200417135933.GB35795@zurbagan.org> Message-ID: <20200417142454.GD35795@zurbagan.org> Hi! On Fri, Apr 17, 2020 at 21:11 +0700, Eugene Grosbein wrote: > 17.04.2020 20:59, Andrey Blochintsev ?????: > > >> ?? ?????? ??????? routing wpa_supplicant ??? ?? ???????? ??????? ???? ? ??????? ? ???: > > > > ??? ??????? - ????? ??????????? ????????? ????????? IP ? ??????????: > > > > ifconfig_wlan0_alias0="WPA" > > ifconfig_wlan0="inet 192.168.0.50 netmask 255.255.255.0" > > ??? ?? ?????????, ??? ??? ????? WPA ?? ?????? ????? ???????. ??, ?????? ????????. ifconfig_wlan0="WPA" ifconfig_wlan0_alias0="inet 192.168.0.50 netmask 255.255.255.0" > ? ???? ???? ?? ? ?????????, ??? ????? ?? ?????? ?? ????????? ????????: > race ????? ??????? wpa_supplicant (? ??????, ???????? ??????????? ? AP) > ? rcorder, ??????? ???????? ??? ?? ???????? ????????? /etc/rc.d/routing > ?? ??????? ??????????? ? AP. IP ?? wlan ????????? ????? ?????????? ?????????? ?? ??????? wpa_supplicant. ?? ??????? ??????????? ? AP ????? ????????? ????? ?????, ?? "????????" ??? ?????? ?????? ????? ??????????? (??? ?? ??? ? ? ?????????? ethernet-? ? ?????????????? ???????). ??, ??????? ntpdate ? ???????, ??? ????? ???????? ?????? ????, ? ?? ???????? - ????? ???? ???? ??? ???????? (? ??????????? ?? timeout-? ? ??????? ??????? ??? wpa_supplicant-?). From eugen at grosbein.net Fri Apr 17 17:59:53 2020 From: eugen at grosbein.net (Eugene Grosbein) Date: Fri, 17 Apr 2020 21:59:53 +0700 Subject: [freebsd] =?utf-8?b?ZGVmYXVsdCByb3V0ZXIg0LTQu9GPIHdsYW4g0YHQviA=?= =?utf-8?b?0YHRgtCw0YLQuNGH0LXRgdC60L7QuSBpcA==?= In-Reply-To: <20200417142454.GD35795@zurbagan.org> References: <20200417143953.02929c23@i11.co> <20200417135933.GB35795@zurbagan.org> <20200417142454.GD35795@zurbagan.org> Message-ID: 17.04.2020 21:24, Andrey Blochintsev ?????: > IP ?? wlan ????????? ????? ?????????? ?????????? ?? ??????? wpa_supplicant. > ?? ??????? ??????????? ? AP ????? ????????? ????? ?????, > ?? "????????" ??? ?????? ?????? ????? ??????????? (??? ?? ??? ? ? ?????????? ethernet-? ? ?????????????? ???????). ?? ?????? ??? ??. ??? ????? ??? ??????? ???????????, ??????? ????????? ????? ??? ?? ?????? ??????????? ????????????, ???????? ???????????? ?? ???? PCI/PCI-E. ?? ? ?????? USB-??????? WiFi ????? devd ??????????? ? ??????????? ? ??????? "???????" ???????? ????????? ???? ????????? /etc/pccard_ether, ??????? ????????? ???????????? ????? /etc/rc.d/netif ??? ???????? ? ????????? ??????????? wlan. ?????? ?????? ??????? route add ? ?????????????? ??????: add net default: gateway 192.168.0.1 fib 0: Network is unreachable ?? ????, ? ???? ??????? ??? "???????" ????????? ????????? ???? ????? ?? ????????? defaultrouter, IP-????? ?? wlan0 ??? ?? ??? ????????, ? ????? ? ??? wlan0 ??? ?? ??????. From eugen at grosbein.net Fri Apr 17 18:05:19 2020 From: eugen at grosbein.net (Eugene Grosbein) Date: Fri, 17 Apr 2020 22:05:19 +0700 Subject: [freebsd] =?utf-8?b?ZGVmYXVsdCByb3V0ZXIg0LTQu9GPIHdsYW4g0YHQviA=?= =?utf-8?b?0YHRgtCw0YLQuNGH0LXRgdC60L7QuSBpcA==?= In-Reply-To: <20200417143953.02929c23@i11.co> References: <20200417143953.02929c23@i11.co> Message-ID: <299bcdfc-884b-f866-b955-0e97bf20d447@grosbein.net> 17.04.2020 18:39, Nick Kostirya ?????: > ??????. > ??????????, ??????????, ??? ????????? ????????? default router ??? wlan ?? ??????????? ip. > > ? /etc/rc.conf ?????????. > defaultrouter="192.168.0.1" > ifconfig_wlan0="WPA inet 192.168.0.50 netmask 255.255.255.0" > > ?? ?????? ??????? routing wpa_supplicant ??? ?? ???????? ??????? ???? ? ??????? ? ???: > add net default: gateway 192.168.0.1 fib 0: Network is unreachable > > DHCP ? ????????? ? MAC ???????????? ?? ???????, ??? ??? ??? USB-WiFi ?? ?????? ???????. ???????? ??? ?????? defaultrouter ?????? ???????????? ?????: static_routes="def:wlan0" route_def="0.0.0.0/0 192.168.0.1" From nikolay.kostirya at i11.co Fri Apr 17 18:22:23 2020 From: nikolay.kostirya at i11.co (Nick Kostirya) Date: Fri, 17 Apr 2020 18:22:23 +0300 Subject: [freebsd] =?utf-8?b?ZGVmYXVsdCByb3V0ZXIg0LTQu9GPIHdsYW4g0YHQviA=?= =?utf-8?b?0YHRgtCw0YLQuNGH0LXRgdC60L7QuSBpcA==?= In-Reply-To: <299bcdfc-884b-f866-b955-0e97bf20d447@grosbein.net> References: <20200417143953.02929c23@i11.co> <299bcdfc-884b-f866-b955-0e97bf20d447@grosbein.net> Message-ID: <20200417182223.094f2613@i11.co> On Fri, 17 Apr 2020 22:05:19 +0700 Eugene Grosbein wrote: > 17.04.2020 18:39, Nick Kostirya ?????: > > ??????. > > ??????????, ??????????, ??? ????????? ????????? default router ??? wlan ?? ??????????? ip. > > > > ? /etc/rc.conf ?????????. > > defaultrouter="192.168.0.1" > > ifconfig_wlan0="WPA inet 192.168.0.50 netmask 255.255.255.0" > > > > ?? ?????? ??????? routing wpa_supplicant ??? ?? ???????? ??????? ???? ? ??????? ? ???: > > add net default: gateway 192.168.0.1 fib 0: Network is unreachable > > > > DHCP ? ????????? ? MAC ???????????? ?? ???????, ??? ??? ??? USB-WiFi ?? ?????? ???????. > > ???????? ??? ?????? defaultrouter ?????? ???????????? ?????: > > static_routes="def:wlan0" > route_def="0.0.0.0/0 192.168.0.1" ???????. ????????! From eugen at grosbein.net Fri Apr 17 18:33:58 2020 From: eugen at grosbein.net (Eugene Grosbein) Date: Fri, 17 Apr 2020 22:33:58 +0700 Subject: [freebsd] =?utf-8?b?ZGVmYXVsdCByb3V0ZXIg0LTQu9GPIHdsYW4g0YHQviA=?= =?utf-8?b?0YHRgtCw0YLQuNGH0LXRgdC60L7QuSBpcA==?= In-Reply-To: <20200417182223.094f2613@i11.co> References: <20200417143953.02929c23@i11.co> <299bcdfc-884b-f866-b955-0e97bf20d447@grosbein.net> <20200417182223.094f2613@i11.co> Message-ID: 17.04.2020 22:22, Nick Kostirya ?????: >> ???????? ??? ?????? defaultrouter ?????? ???????????? ?????: >> >> static_routes="def:wlan0" >> route_def="0.0.0.0/0 192.168.0.1" > > ???????. ????????! ?????, ????? ???????? ? ????? ????????? ?????? static_routes: defaultrouter="192.168.0.1:wlan0" ?????? ??? ?? ????? ???? defaultrouter ????? ??? ?????????? ??? ???? ?????: static_routes="_default" route__default="default X.X.X.X" ??? "?????????? ?" static_routes, ???? ??? ??? ????????????, ?????? ?????????? ? ??????. From nikolay.kostirya at i11.co Fri Apr 17 18:43:23 2020 From: nikolay.kostirya at i11.co (Nick Kostirya) Date: Fri, 17 Apr 2020 18:43:23 +0300 Subject: [freebsd] =?utf-8?b?ZGVmYXVsdCByb3V0ZXIg0LTQu9GPIHdsYW4g0YHQviA=?= =?utf-8?b?0YHRgtCw0YLQuNGH0LXRgdC60L7QuSBpcA==?= In-Reply-To: References: <20200417143953.02929c23@i11.co> <299bcdfc-884b-f866-b955-0e97bf20d447@grosbein.net> <20200417182223.094f2613@i11.co> Message-ID: <20200417184323.5b105f39@i11.co> On Fri, 17 Apr 2020 22:33:58 +0700 Eugene Grosbein wrote: > 17.04.2020 22:22, Nick Kostirya ?????: > > >> ???????? ??? ?????? defaultrouter ?????? ???????????? ?????: > >> > >> static_routes="def:wlan0" > >> route_def="0.0.0.0/0 192.168.0.1" > > > > ???????. ????????! > > ?????, ????? ???????? ? ????? ????????? ?????? static_routes: > > defaultrouter="192.168.0.1:wlan0" > > ?????? ??? ?? ????? ???? defaultrouter ????? ??? ?????????? ??? ???? ?????: > > static_routes="_default" > route__default="default X.X.X.X" > > ??? "?????????? ?" static_routes, ???? ??? ??? ????????????, ?????? ?????????? ? ??????. ??, ? ??? ????????. From eugen at grosbein.net Fri Apr 17 18:45:28 2020 From: eugen at grosbein.net (Eugene Grosbein) Date: Fri, 17 Apr 2020 22:45:28 +0700 Subject: [freebsd] =?utf-8?b?ZGVmYXVsdCByb3V0ZXIg0LTQu9GPIHdsYW4g0YHQviA=?= =?utf-8?b?0YHRgtCw0YLQuNGH0LXRgdC60L7QuSBpcA==?= In-Reply-To: <20200417183936.62b70677@i11.co> References: <20200417143953.02929c23@i11.co> <299bcdfc-884b-f866-b955-0e97bf20d447@grosbein.net> <20200417182223.094f2613@i11.co> <20200417183936.62b70677@i11.co> Message-ID: <3c463462-f22c-c31b-79b9-d23bc8beec70@grosbein.net> 17.04.2020 22:39, Nick Kostirya ?????: > On Fri, 17 Apr 2020 22:33:58 +0700 > Eugene Grosbein wrote: > >> 17.04.2020 22:22, Nick Kostirya ?????: >> >>>> ???????? ??? ?????? defaultrouter ?????? ???????????? ?????: >>>> >>>> static_routes="def:wlan0" >>>> route_def="0.0.0.0/0 192.168.0.1" >>> >>> ???????. ????????! >> >> ?????, ????? ???????? ? ????? ????????? ?????? static_routes: >> >> defaultrouter="192.168.0.1:wlan0" >> >> ?????? ??? ?? ????? ???? defaultrouter ????? ??? ?????????? ??? ???? ?????: >> >> static_routes="_default" >> route__default="default X.X.X.X" >> >> ??? "?????????? ?" static_routes, ???? ??? ??? ????????????, ?????? ?????????? ? ??????. > > ??, ? ??? ????????. ? ??? ? ???? ???? ??????????, ??? ?? ????? ???? ???????? ? "??????" defaultrouter ??? ???????? ????? ??????????, ?????? ? ???? ?????????? ?????? "Network is unreachable" ??-?? ????, ??? ??????? ????????? default ??????????????? ??? ??????? ???: ???? ??????? ?????????? ????????? ????, ?????????? ?????? /etc/rc.d/netif ??????, ??? ??????????? ?????????? ?? devd ??????? ?????? ???????? IP ?? ??????????? wlan0. ?? ??? ?? ????? ??? ??? ????????? ?????????? defaultrouter, ? ??? ????? ??? ?????? ??????????, ???? ? ????????? ????? ???. ? ??????? ???????? ? ????????, ? ?? ?????. From nikolay.kostirya at i11.co Fri Apr 17 19:29:04 2020 From: nikolay.kostirya at i11.co (Nick Kostirya) Date: Fri, 17 Apr 2020 19:29:04 +0300 Subject: [freebsd] =?utf-8?b?ZGVmYXVsdCByb3V0ZXIg0LTQu9GPIHdsYW4g0YHQviA=?= =?utf-8?b?0YHRgtCw0YLQuNGH0LXRgdC60L7QuSBpcA==?= In-Reply-To: <3c463462-f22c-c31b-79b9-d23bc8beec70@grosbein.net> References: <20200417143953.02929c23@i11.co> <299bcdfc-884b-f866-b955-0e97bf20d447@grosbein.net> <20200417182223.094f2613@i11.co> <20200417183936.62b70677@i11.co> <3c463462-f22c-c31b-79b9-d23bc8beec70@grosbein.net> Message-ID: <20200417192904.36733ece@i11.co> On Fri, 17 Apr 2020 22:45:28 +0700 Eugene Grosbein wrote: > 17.04.2020 22:39, Nick Kostirya ?????: > > On Fri, 17 Apr 2020 22:33:58 +0700 > > Eugene Grosbein wrote: > > > >> 17.04.2020 22:22, Nick Kostirya ?????: > >> > >>>> ???????? ??? ?????? defaultrouter ?????? ???????????? ?????: > >>>> > >>>> static_routes="def:wlan0" > >>>> route_def="0.0.0.0/0 192.168.0.1" > >>> > >>> ???????. ????????! > >> > >> ?????, ????? ???????? ? ????? ????????? ?????? static_routes: > >> > >> defaultrouter="192.168.0.1:wlan0" > >> > >> ?????? ??? ?? ????? ???? defaultrouter ????? ??? ?????????? ??? ???? ?????: > >> > >> static_routes="_default" > >> route__default="default X.X.X.X" > >> > >> ??? "?????????? ?" static_routes, ???? ??? ??? ????????????, ?????? ?????????? ? ??????. > > > > ??, ? ??? ????????. > > ? ??? ? ???? ???? ??????????, ??? ?? ????? ???? ???????? ? "??????" defaultrouter > ??? ???????? ????? ??????????, ?????? ? ???? ?????????? ?????? "Network is unreachable" > ??-?? ????, ??? ??????? ????????? default ??????????????? ??? ??????? ???: > ???? ??????? ?????????? ????????? ????, ?????????? ?????? /etc/rc.d/netif > ??????, ??? ??????????? ?????????? ?? devd ??????? ?????? ???????? IP ?? ??????????? wlan0. ?????? defaultrouter ??? ???????? ?????????? ?? ????????. ???? ? ??? ??????? ?????, ????? ??????, ??? ? ??????? ???????? ??? ??????. > > ?? ??? ?? ????? ??? ??? ????????? ?????????? defaultrouter, ? ??? ????? ??? ?????? ??????????, > ???? ? ????????? ????? ???. > > ? ??????? ???????? ? ????????, ? ?? ?????. ????? ????????, ??????? ???????????. From nikolay.kostirya at i11.co Fri Apr 17 19:49:05 2020 From: nikolay.kostirya at i11.co (Nick Kostirya) Date: Fri, 17 Apr 2020 19:49:05 +0300 Subject: [freebsd] =?utf-8?b?ZGVmYXVsdCByb3V0ZXIg0LTQu9GPIHdsYW4g0YHQviA=?= =?utf-8?b?0YHRgtCw0YLQuNGH0LXRgdC60L7QuSBpcA==?= In-Reply-To: References: <20200417143953.02929c23@i11.co> <299bcdfc-884b-f866-b955-0e97bf20d447@grosbein.net> <20200417182223.094f2613@i11.co> Message-ID: <20200417194905.56ec9077@i11.co> On Fri, 17 Apr 2020 22:33:58 +0700 Eugene Grosbein wrote: > 17.04.2020 22:22, Nick Kostirya ?????: > > >> ???????? ??? ?????? defaultrouter ?????? ???????????? ?????: > >> > >> static_routes="def:wlan0" > >> route_def="0.0.0.0/0 192.168.0.1" > > > > ???????. ????????! > > ?????, ????? ???????? ? ????? ????????? ?????? static_routes: > > defaultrouter="192.168.0.1:wlan0" ? ?????? (??????????, ??? ???? ??????? ? ???????). ???????? ?????? ?????? ???????.