Networking Forums

Networking Forums > Wireless Networking > Wireless Networks > automatically configuring wireless

Reply
Thread Tools Display Modes

automatically configuring wireless

 
 
deheinz1
Guest
Posts: n/a

 
      03-01-2005, 04:45 PM
Does anybody know of a utility that will assist in populating wireless
configurations with 802.1x? If the configuration is the same for 500 users
I do not want to sit there and manually configure 500 machines. I just want
to do it once and have a utility do the rest. All of this seems to be tied
into the wireless zero configuration service somehow? Any help would be
appreciated.

Thanks in advance.

Dave

 
Reply With Quote
 
 
 
 
Chris Gual [MSFT]
Guest
Posts: n/a

 
      03-01-2005, 10:55 PM
Hi Dave,

There are a couple of different ways you can configure the Wireless Zero
Configuration client without using the UI. The first is by using the
Wireless Network Setup Wizard with a flash drive. There is a Cable-Guy
article describing how to use the wizard to do this here:
http://www.microsoft.com/technet/com...uy/cg0604.mspx

There is also an API which can be used by developers to write a program
to add network profiles to the Wireless Zero Configuration client. The API
is part of the DDK and can accept Wireless Zero Configuration settings in
the form of XML data. Here is a link to the API in MSDN:
http://msdn.microsoft.com/library/de...dc5163.xml.asp

Best of luck,
Chris Gual [MSFT]
--
This posting is provided "AS IS" with no warranties, and confers no rights.

"deheinz1" <(E-Mail Removed)> wrote in message
newsD92EA70-2FB0-4C6F-920E-(E-Mail Removed)...
> Does anybody know of a utility that will assist in populating wireless
> configurations with 802.1x? If the configuration is the same for 500
> users
> I do not want to sit there and manually configure 500 machines. I just
> want
> to do it once and have a utility do the rest. All of this seems to be tied
> into the wireless zero configuration service somehow? Any help would be
> appreciated.
>
> Thanks in advance.
>
> Dave
>



 
Reply With Quote
 
deheinz1
Guest
Posts: n/a

 
      03-02-2005, 02:07 PM
Chris,



I appreciate the response you gave me on my question. I was
hoping I can just ask you a couple of more question here on the later. I
knew about the wizard but it looked to me like it only did WPA and did not
get into 802.1x with PEAP selecting certificates ect.



I wanted to confirm before really diving into this that the API you’re
talking about can be configured for PEAP authentication and will be able to
select certificates if already on the machine. Here at the College we use
PEAP with certificates. I just want to also confirm that you do not SSID to
be broadcasting since we do cloak.



This is exactly what I am looking for if it does advanced 802.1x
authentication configurations.



"Chris Gual [MSFT]" wrote:

> Hi Dave,
>
> There are a couple of different ways you can configure the Wireless Zero
> Configuration client without using the UI. The first is by using the
> Wireless Network Setup Wizard with a flash drive. There is a Cable-Guy
> article describing how to use the wizard to do this here:
> http://www.microsoft.com/technet/com...uy/cg0604.mspx
>
> There is also an API which can be used by developers to write a program
> to add network profiles to the Wireless Zero Configuration client. The API
> is part of the DDK and can accept Wireless Zero Configuration settings in
> the form of XML data. Here is a link to the API in MSDN:
> http://msdn.microsoft.com/library/de...dc5163.xml.asp
>
> Best of luck,
> Chris Gual [MSFT]
> --
> This posting is provided "AS IS" with no warranties, and confers no rights.
>
> "deheinz1" <(E-Mail Removed)> wrote in message
> newsD92EA70-2FB0-4C6F-920E-(E-Mail Removed)...
> > Does anybody know of a utility that will assist in populating wireless
> > configurations with 802.1x? If the configuration is the same for 500
> > users
> > I do not want to sit there and manually configure 500 machines. I just
> > want
> > to do it once and have a utility do the rest. All of this seems to be tied
> > into the wireless zero configuration service somehow? Any help would be
> > appreciated.
> >
> > Thanks in advance.
> >
> > Dave
> >

>
>
>

 
Reply With Quote
 
Chris Gual [MSFT]
Guest
Posts: n/a

 
      03-04-2005, 04:05 PM
Hi Dave,

I am not as familiar with the Wireless Network Setup Wizard as I am with
other aspects of wireless. I think it is mostly for configuring home users.
It does allow you to specifiy if you want to use WEP or WPA (as in WPA-PSK).
I don't think it lets you configure 802.1X settings.

The IProvisioningProfileWireless API allows you to add new wireless
networks to the clients preferred list. It allows you to manipulate a bunch
of different setting for a wireless network, but it only allows you to
specify an EAP type to use, and not internal EAP parameters. For example,
you could specify if the the wireless network was using either EAP-TLS or
PEAP, but not whether to use PEAP-MSCHAPv2 or PEAP-TLS, or whether to
validate server certificates.

The XML schema for how a wireless profile is defined for use with this
API is here:
http://msdn.microsoft.com/library/de...3797fa.xml.asp.
This will show you what variables you can set using the API.

In answer to your question regarding broadcasting SSIDs, this is a
feature you need to configure on the access point, not on the wireless
client.

Thanks,
Chris Gual [MSFT]
--
This posting is provided "AS IS" with no warranties, and confers no rights.

"deheinz1" <(E-Mail Removed)> wrote in message
news:76AB97E8-F17B-48CE-85EC-(E-Mail Removed)...
> Chris,
>
>
>
> I appreciate the response you gave me on my question. I was
> hoping I can just ask you a couple of more question here on the later. I
> knew about the wizard but it looked to me like it only did WPA and did not
> get into 802.1x with PEAP selecting certificates ect.
>
>
>
> I wanted to confirm before really diving into this that the API you're
> talking about can be configured for PEAP authentication and will be able
> to
> select certificates if already on the machine. Here at the College we use
> PEAP with certificates. I just want to also confirm that you do not SSID
> to
> be broadcasting since we do cloak.
>
>
>
> This is exactly what I am looking for if it does advanced 802.1x
> authentication configurations.
>
>
>
> "Chris Gual [MSFT]" wrote:
>
>> Hi Dave,
>>
>> There are a couple of different ways you can configure the Wireless
>> Zero
>> Configuration client without using the UI. The first is by using the
>> Wireless Network Setup Wizard with a flash drive. There is a Cable-Guy
>> article describing how to use the wizard to do this here:
>> http://www.microsoft.com/technet/com...uy/cg0604.mspx
>>
>> There is also an API which can be used by developers to write a
>> program
>> to add network profiles to the Wireless Zero Configuration client. The
>> API
>> is part of the DDK and can accept Wireless Zero Configuration settings in
>> the form of XML data. Here is a link to the API in MSDN:
>> http://msdn.microsoft.com/library/de...dc5163.xml.asp
>>
>> Best of luck,
>> Chris Gual [MSFT]
>> --
>> This posting is provided "AS IS" with no warranties, and confers no
>> rights.
>>
>> "deheinz1" <(E-Mail Removed)> wrote in message
>> newsD92EA70-2FB0-4C6F-920E-(E-Mail Removed)...
>> > Does anybody know of a utility that will assist in populating wireless
>> > configurations with 802.1x? If the configuration is the same for 500
>> > users
>> > I do not want to sit there and manually configure 500 machines. I just
>> > want
>> > to do it once and have a utility do the rest. All of this seems to be
>> > tied
>> > into the wireless zero configuration service somehow? Any help would
>> > be
>> > appreciated.
>> >
>> > Thanks in advance.
>> >
>> > Dave
>> >

>>
>>
>>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
wireless automatically disables BostonMassacre Wireless Networks 1 12-27-2007 09:16 PM
Automatically connecting to wireless Gogs Wireless Networks 0 08-29-2005 12:35 PM
Automatically disable wireless Bart Wireless Networks 5 07-11-2005 11:27 PM
wireless interface going up automatically Dani Camps Linux Networking 0 02-01-2005 08:02 PM
Automatically Configuring Wireless/Deploying Settings Joseph Wireless Networks 0 12-21-2004 02:34 PM



1 2 3 4 5 6 7 8 9 10 11