Guest Posted ... Can anyone help me with creating a hotspot to share the wired connection with airvpn on using my wireless adapter? I tried lots of programs but simply none gives internet connection to my mobile.Any ideas, tips or tricks to make it work? Seems like when i try to share the tap network connection it doesn't work. Thanks for any help. EDIT:Stuck at obtaining ip address. If i put the gateway and ip manually it connects but says no internet Share this post Link to post
OpenSourcerer 1441 Posted ... You fail to mention your OS. On Windows, a program is not needed. I've got a script for this, even. Hide OpenSourcerer's signature Hide all signatures NOT AN AIRVPN TEAM MEMBER. USE TICKETS FOR PROFESSIONAL SUPPORT. LZ1's New User Guide to AirVPN « Plenty of stuff for advanced users, too! Want to contact me directly? All relevant methods are on my About me page. Share this post Link to post
OpenSourcerer 1441 Posted ... I'll post my script tomorrow. Ran a quick search to ensure netsh is still available on Win10. You never know what they remove. Or add... Hide OpenSourcerer's signature Hide all signatures NOT AN AIRVPN TEAM MEMBER. USE TICKETS FOR PROFESSIONAL SUPPORT. LZ1's New User Guide to AirVPN « Plenty of stuff for advanced users, too! Want to contact me directly? All relevant methods are on my About me page. Share this post Link to post
Guest Posted ... It seems they didn't remove it. I can do netsh with cmd. Thanks for the help. Share this post Link to post
OpenSourcerer 1441 Posted ... Oh sorry, I forgot. Here it is. Save it as something.bat or something.cmd.Script is meant to be run once as admin to allow starting and stopping it without reexecution. In the start section, change ssid and key to what you want. @echo off goto intro :intro echo ----------- start 1, stop 2, exit 3 ----------- set /p i= if %i%==1 goto start if %i%==2 goto stop if %i%==3 (goto exit) else goto invalidinput :start echo ----------- mode=allow ----------- netsh wlan set hostednetwork mode=allow echo ----------- Set SSID, PSK ----------- netsh wlan set hostednetwork ssid=SSID key=1234567890 keyUsage=persistent echo ----------- Start it ----------- netsh wlan start hostednetwork goto exitintermediate :stop echo ----------- Stop it ----------- netsh wlan stop hostednetwork echo ----------- mode=disallow ----------- netsh wlan set hostednetwork mode=disallow goto exit :exit pause exit :exitintermediate pause echo ----------- 2 to stop it ----------- set /p i= if %i%==2 (goto stop) else goto invalidinput :invalidinput echo ----------- invalid input ----------- goto intro Hide OpenSourcerer's signature Hide all signatures NOT AN AIRVPN TEAM MEMBER. USE TICKETS FOR PROFESSIONAL SUPPORT. LZ1's New User Guide to AirVPN « Plenty of stuff for advanced users, too! Want to contact me directly? All relevant methods are on my About me page. Share this post Link to post
Guest Posted ... Thanks a lot for the script. Hmmm this is the same as with the programs. It gets stuck at obtaining ip address. EDIT: WHen i do ipconfig i see that the adapter created has no Default Gateway. EDIT2: without airvpn running i can use the script just fine btw. EDIT3: It's my isp. It sucks. Share this post Link to post
OpenSourcerer 1441 Posted ... Hmmm this is the same as with the programs. It gets stuck at obtaining ip address. Because the programs are most likely using netsh as well... a script is always more transparent on what it does. EDIT3: It's my isp. It sucks. How do you know? Hide OpenSourcerer's signature Hide all signatures NOT AN AIRVPN TEAM MEMBER. USE TICKETS FOR PROFESSIONAL SUPPORT. LZ1's New User Guide to AirVPN « Plenty of stuff for advanced users, too! Want to contact me directly? All relevant methods are on my About me page. Share this post Link to post
Guest Posted ... I am not 100% sure but it seems it detects connected devices and if not one i allowed from there system it stops it. That's why it doesn't get an address on it's own. I assume they somehow control the ip release i don't know.I am not technical enough to understand but this is what i saw from google search. EDIT. Now that i typed this i have an idea. If i have a known mac address it might connect. Trying in a min. EDIT2: This didn't work. Anw thanks for your help buddy i really appreciate it. Share this post Link to post