Answer the question
In order to leave comments, you need to log in
Convenient sharing of wifi networks using a laptop / android smartphone
The situation is as follows: we came to rest in Bulgaria, a company of 4 people. The hotel has wifi, but paid. We bought access, access is limited to one device, phones catch the network badly, but laptops are excellent.
There are 2 laptops. One under Windows, another under Mac OS X 10.8 (air 2012), and several htc phones under android (Nexus One, One S)
Task:
. There is a desire to share the connection to the entire number. But so far I have not found a way out how to do it concisely and simply.
Any guesses? bluetooth connection is the last option, because the speed is low.
Answer the question
In order to leave comments, you need to log in
I'm afraid the easiest option is: hotel WiFi -> laptop 1 -> wired -> laptop 2 -> WiFi hotspot on laptop 2
try connectify.me
Re-broadcast Wi-Fi is announced in the lite version.
On a laptop with Windows, install Connectify or Virtual Router. It is also possible through the console, without third-party software:
Starting a point:
netsh wlan set hostednetwork mode=allow ssid=PointName key=Password keyUsage=persistent
netsh wlan start hostednetwork
netsh wlan stop hostednetwork
netsh wlan show settings
netsh wlan show hostednetwork setting=security
$ssid = "defaultSSID"
$pass = "defaultPASSWODR"
if ($Args.count > 0)
{
if ($Args[0] = "start")
{
if ($Args.count > 1)
{
$ssid = $Args[1]
}
if ($Args.count > 2)
{
$pass = $Args[2]
}
netsh wlan set hostednetwork mode=allow ssid=$ssid key=$pass keyUsage=persistent
netsh wlan start hostednetwork
}
else
{
if ($Args[0] = "stop")
{
netsh wlan stop hostednetwork
}
}
}
else
{
netsh wlan show settings
netsh wlan show hostednetwork setting=security
}
If I were you, without hesitation in the nearest store, without stinting a thousand rubles, I would buy a banal router with a repeater and not suffer from nonsense. Some ASUS RT-G32 , if the memory does not lie, calmly knows how to do this.
WiFi - laptop - usb / bluetooth - mobile - your own WiFi.
Then you need to force the mobile to route as it should:
route add default gw <ip_of_note_on_usb0> metric 20 # брать интернеты с usb0; метрика опциональна, для работы по gprs в другое время.
sysctl net.ipv4.ip_forward=1
iptables -t nat -A POSTROUTING -o wlan0 -j MASQUERADE
iptables -P FORWARD ACCEPT
w3bsit3-dns.com/forum/index.php?showtopic=175743 sea of ways to connect + painted about soft ap and ad hoc. There is no ad hoc support in official android firmware, therefore, in order to connect a smartphone to Wi-Fi, a computer requires
1) soft ap support in a laptop
Or
2) root on a smartphone
Or
3) a wifi router with soft ap support
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question