Thread Perl WLAN Modul ? (8 answers)
Opened by YAPD at 2015-10-01 16:19

YAPD
 2015-10-01 16:19
#182467 #182467
User since
2015-09-20
146 Artikel
BenutzerIn

user image
Hallo Zusammen,

gibt es in Perl ein Modul, mit dem ich WLAN Objekte
ansprechen kann ? Ich habe im Internet nur einen
Eintrag gefunden :

Net::WLAN is a OO interface to the Linux Wireless Extensions to query and
set the configuration of wireless interfaces and scan wireless networks.

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use Net::WLAN qw/:all/;

# enumerate the WLAN interfaces attached to your Linux box
@interfaces = wlan_enum;

# set all your interfaces to channel 7
$_->channel(7) for @interfaces;

# set the configuration of ethX
$ethX = Net::WLAN::Interface->new("ethX");
$ethX->config(
Essid => 'NEW_ESSID',
Channel => 7,
Mode => $IW_MODE_MASTER,
);
$ethX->print;

# scan on an interface and print the name and adress of all WLANs seen
print "Found WLAN: " . $_->{Name} . " (" . $_->{Address} . ")\n"
foreach wlan_scan("ethX");


Allerdings scheitert die Installation über "cpan Net::WLAN" :
"Can't install Net::WLAN , don't know what it is"

Gibt es noch andere Module oder wie bekomme ich das o.g.
Modul ?

Viele Grüße
YAPD
Yet Another Perl Developer

View full thread Perl WLAN Modul ?