Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Wireless Ad-Hoc mesh network implementation for Windows 7

I have been looking into Mesh Connectivity Layer on Microsoft Research.

The implementation seems to be applicable only for Windows XP.

Is there any freely available Ad-hoc Mesh support to help me with Multi-hop ad-hoc mesh networking? I am using Windows 7.

like image 561
bdhar Avatar asked Nov 14 '22 06:11

bdhar


1 Answers

For the record the only current way to do anything ad-hoc in Windows is to use the netsh command's wlan * hostednetwork options, e.g.

netsh wlan set hostednetwork ssid="My AdHoc Network" key=YourPassword keyUsage=persistent mode=allow
netsh wlan start hostednetwork
netsh wlan show hostednetwork

This is not a mesh of course, but currently the only official solution from Microsoft that comes close.

It only starts manually, so if you want it to start at boot you need to create a task scheduler entry for this.

like image 100
Tony Wall Avatar answered Dec 16 '22 11:12

Tony Wall