Re: [WISPA] Alvarion VL Access Control

2009-11-28 Thread Chuck Bartosch
Thanks Jeremy.

Chuck

On Nov 27, 2009, at 12:14 PM, jp wrote:

 We use this for setting up VL radios, including speed. If you want to 
 automate it, just use $1, 
 $2 as command line variables instead of reading in answers from questions. 
 Then you could 
 include it in a loop that cycles through a database generated list.
 
 I wish more manufacturers actually knew something about SNMP so we could 
 program all radios 
 this way. Saves a lot of human error.
 
 #!/bin/bash
 echo -e 
 |--|
 echo -e | pinging radio to check if it is there and is set to factory 
 defaults |
 echo -e | hit control-C if pinging fails 
   | 
 echo -e 
 |--|
 ping -n -c 2 10.0.0.1
 
 echo -e 
 |--|
 echo -e | what will the radio be named?  
   |
 read UNITNAME
 echo -e | what IP address will this radio have?  
   |
 read IP
 echo -e | This radio will have  $IP
 echo -e | what ESSID will this radio have?   
   |
 read ESSID
 echo -e | Speed choice: Type 1 for gold (2 down 1 up), 2 for platinum 
 connectme (3 down 1.5 up), 3 platinum (3 down, 2 up)
 read SPEED
 echo -e | Enter the antenna gain
 read ANTENNA
 echo -e 
 |--|
 
 CM=changeme
 SP=/usr/bin/snmpset -v1 -r2 -On -c
 SG=/usr/bin/snmpget -v1 -r2 -On -c
 GW=`echo $IP|cut -d. -f1-3`.1
 
 echo -e 
 |--|
 echo -e | Setting up MIR/CIR 
   |
 echo -e 
 |--|
 
 case $SPEED in
 1)
  $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.7.2.0 i 2000
  $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.7.3.0 i 1000
  ;;
 2)
  $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.7.2.0 i 3000
  $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.7.3.0 i 1500
  ;;
 3)
  $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.7.2.0 i 3000
  $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.7.3.0 i 2000
  ;;
 esac
 $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.7.4.0 i 128
 $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.7.5.0 i 128
 $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.7.6.0 i 1000
 echo -e Now setup as:
 echo -e MirAUtoSU `$SG private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.7.2.0`
 echo -e MirSUtoAU `$SG private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.7.3.0`
 echo -e CirAUtoSU `$SG private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.7.4.0`
 echo -e CirSUtoAU `$SG private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.7.5.0`
 echo -e MaxDelay  `$SG private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.7.6.0`
 
 echo -e CIR/MIR all setup
 
 echo -e 
 |--|
 echo -e | Setting wireless menu items
   |
 echo -e 
 |--|
 
 $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.6.1.1.0 s $ESSID
 $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.6.11.1.0 i 2
 $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.6.13.1.0 i 2
 $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.6.17.0 s $ANTENNA
 
 
 echo -e ESSID `$SG private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.6.1.1.0`
 echo -e Best AU   `$SG private 10.0.0.1 
 ..1.3.6.1.4.1.12394.1.1.6.11.1.0`
 echo -e ATPC  `$SG private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.6.13.1.0`
 echo -e AntennaGain   `$SG private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.6.17.0`
 
 echo -e Done setting wireless items
 
 echo -e 
 |--|
 echo -e | Setting up management items
   |
 echo -e 
 |--|
 
 $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.2.3.0 s $UNITNAME
 $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.2.8.2.0 s alsochangeme
 $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.2.8.3.0 s changeme
 $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.4.1.0 a $IP
 $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.4.2.0 a 255.255.255.0
 $SP private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.4.3.0 a $GW
 
 echo -e Name`$SG private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.2.3.0`
 echo -e Inst  PW`$SG private 10.0.0.1 
 .1.3.6.1.4.1.12394.1.1.2.8.2.0`
 echo -e Admin PW`$SG private 10.0.0.1 
 .1.3.6.1.4.1.12394.1.1.2.8.3.0`
 echo -e IP address  `$SG private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.4.1.0`
 echo -e Netmask `$SG private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.4.2.0`
 echo -e Gateway `$SG private 10.0.0.1 .1.3.6.1.4.1.12394.1.1.4.3.0`
 
 echo -e Done setting up manamgent items
 
 echo -e 
 |--|
 echo -e | Setting up filter and 

Re: [WISPA] Indoor deployment question

2009-11-28 Thread Ralph
Didn't your throughput just pretty much to pot? I tried it with some  
tranzeos and that's what happened.

On Nov 22, 2009, at 5:07 PM, Robert West robert.w...@just- 
micro.com wrote:

 I've done plenty of WDS AP's in hotels.  Quick and easy.

 Bob-

 -Original Message-
 From: wireless-boun...@wispa.org [mailto:wireless-boun...@wispa.org]  
 On
 Behalf Of Mike Hammett
 Sent: Sunday, November 22, 2009 5:01 PM
 To: wireless@wispa.org
 Subject: [WISPA] Indoor deployment question

 I would prefer copper to link indoor APs. If that won't work due to  
 either
 technical issues or the customer just plain doesn't want holes  
 drilled, is
 WDS pretty much the only financially viable alternative that properly
 bridges the network?  Could do a boat-load of PtP links, but that'd be
 silly.


 -
 Mike Hammett
 Intelligent Computing Solutions
 http://www.ics-il.com



 --- 
 --- 
 --
 
 WISPA Wants You! Join today!
 http://signup.wispa.org/
 --- 
 --- 
 --
 

 WISPA Wireless List: wireless@wispa.org

 Subscribe/Unsubscribe:
 http://lists.wispa.org/mailman/listinfo/wireless

 Archives: http://lists.wispa.org/pipermail/wireless/





 --- 
 --- 
 --- 
 --- 
 
 WISPA Wants You! Join today!
 http://signup.wispa.org/
 --- 
 --- 
 --- 
 --- 
 

 WISPA Wireless List: wireless@wispa.org

 Subscribe/Unsubscribe:
 http://lists.wispa.org/mailman/listinfo/wireless

 Archives: http://lists.wispa.org/pipermail/wireless/



WISPA Wants You! Join today!
http://signup.wispa.org/

 
WISPA Wireless List: wireless@wispa.org

Subscribe/Unsubscribe:
http://lists.wispa.org/mailman/listinfo/wireless

Archives: http://lists.wispa.org/pipermail/wireless/


[WISPA] Lightning arrestors

2009-11-28 Thread Michael Baird
What happens if you use a 2.4 lightning arrestor on a 5.8 radio? Will it 
cause degraded signal or incorrect lightning protection.

Regards
Michael Baird



WISPA Wants You! Join today!
http://signup.wispa.org/

 
WISPA Wireless List: wireless@wispa.org

Subscribe/Unsubscribe:
http://lists.wispa.org/mailman/listinfo/wireless

Archives: http://lists.wispa.org/pipermail/wireless/


Re: [WISPA] Lightning arrestors

2009-11-28 Thread Nathan Stooke
Hello,

Yes if it is not rated for up to 5.8ghz.  You should be able to find
specs on the lightning arrestor.

-Original Message-
From: wireless-boun...@wispa.org [mailto:wireless-boun...@wispa.org] On
Behalf Of Michael Baird
Sent: Saturday, November 28, 2009 10:01 PM
To: WISPA General List
Subject: [WISPA] Lightning arrestors

What happens if you use a 2.4 lightning arrestor on a 5.8 radio? Will it 
cause degraded signal or incorrect lightning protection.

Regards
Michael Baird




WISPA Wants You! Join today!
http://signup.wispa.org/


 
WISPA Wireless List: wireless@wispa.org

Subscribe/Unsubscribe:
http://lists.wispa.org/mailman/listinfo/wireless

Archives: http://lists.wispa.org/pipermail/wireless/




WISPA Wants You! Join today!
http://signup.wispa.org/

 
WISPA Wireless List: wireless@wispa.org

Subscribe/Unsubscribe:
http://lists.wispa.org/mailman/listinfo/wireless

Archives: http://lists.wispa.org/pipermail/wireless/


Re: [WISPA] Indoor deployment question

2009-11-28 Thread Robert West
Nope, but they weren't much interested in throughput at the hotels, the ones
I have done didn't provide much bandwidth anyhow.  They would have from 3mb
to 10mb and share it with all the guests.  As it is, I never see much usage
in the logs, just the usual Skype, email and porn.

Bob-



-Original Message-
From: wireless-boun...@wispa.org [mailto:wireless-boun...@wispa.org] On
Behalf Of Ralph
Sent: Saturday, November 28, 2009 10:42 PM
To: WISPA General List
Subject: Re: [WISPA] Indoor deployment question

Didn't your throughput just pretty much to pot? I tried it with some  
tranzeos and that's what happened.

On Nov 22, 2009, at 5:07 PM, Robert West robert.w...@just- 
micro.com wrote:

 I've done plenty of WDS AP's in hotels.  Quick and easy.

 Bob-

 -Original Message-
 From: wireless-boun...@wispa.org [mailto:wireless-boun...@wispa.org]  
 On
 Behalf Of Mike Hammett
 Sent: Sunday, November 22, 2009 5:01 PM
 To: wireless@wispa.org
 Subject: [WISPA] Indoor deployment question

 I would prefer copper to link indoor APs. If that won't work due to  
 either
 technical issues or the customer just plain doesn't want holes  
 drilled, is
 WDS pretty much the only financially viable alternative that properly
 bridges the network?  Could do a boat-load of PtP links, but that'd be
 silly.


 -
 Mike Hammett
 Intelligent Computing Solutions
 http://www.ics-il.com



 --- 
 --- 
 --
 
 WISPA Wants You! Join today!
 http://signup.wispa.org/
 --- 
 --- 
 --
 

 WISPA Wireless List: wireless@wispa.org

 Subscribe/Unsubscribe:
 http://lists.wispa.org/mailman/listinfo/wireless

 Archives: http://lists.wispa.org/pipermail/wireless/





 --- 
 --- 
 --- 
 --- 
 
 WISPA Wants You! Join today!
 http://signup.wispa.org/
 --- 
 --- 
 --- 
 --- 
 

 WISPA Wireless List: wireless@wispa.org

 Subscribe/Unsubscribe:
 http://lists.wispa.org/mailman/listinfo/wireless

 Archives: http://lists.wispa.org/pipermail/wireless/




WISPA Wants You! Join today!
http://signup.wispa.org/


 
WISPA Wireless List: wireless@wispa.org

Subscribe/Unsubscribe:
http://lists.wispa.org/mailman/listinfo/wireless

Archives: http://lists.wispa.org/pipermail/wireless/






WISPA Wants You! Join today!
http://signup.wispa.org/

 
WISPA Wireless List: wireless@wispa.org

Subscribe/Unsubscribe:
http://lists.wispa.org/mailman/listinfo/wireless

Archives: http://lists.wispa.org/pipermail/wireless/


Re: [WISPA] Lightning arrestors

2009-11-28 Thread Robert West
I second that.  Most ARE rated for up to 5.8 but don't seem to list it
unless you ask.  Last time I purchased them I found the ones listed for 5.8
only were much more $$ than the 2.4.  Turned out the 2.4's I was buying were
indeed rated to 5.8, I just had to ask to find out.  Makes sense, why make 2
when you can do the same with just one product.



Bob-



-Original Message-
From: wireless-boun...@wispa.org [mailto:wireless-boun...@wispa.org] On
Behalf Of Nathan Stooke
Sent: Saturday, November 28, 2009 11:19 PM
To: 'WISPA General List'
Subject: Re: [WISPA] Lightning arrestors

Hello,

Yes if it is not rated for up to 5.8ghz.  You should be able to find
specs on the lightning arrestor.

-Original Message-
From: wireless-boun...@wispa.org [mailto:wireless-boun...@wispa.org] On
Behalf Of Michael Baird
Sent: Saturday, November 28, 2009 10:01 PM
To: WISPA General List
Subject: [WISPA] Lightning arrestors

What happens if you use a 2.4 lightning arrestor on a 5.8 radio? Will it 
cause degraded signal or incorrect lightning protection.

Regards
Michael Baird




WISPA Wants You! Join today!
http://signup.wispa.org/


 
WISPA Wireless List: wireless@wispa.org

Subscribe/Unsubscribe:
http://lists.wispa.org/mailman/listinfo/wireless

Archives: http://lists.wispa.org/pipermail/wireless/





WISPA Wants You! Join today!
http://signup.wispa.org/


 
WISPA Wireless List: wireless@wispa.org

Subscribe/Unsubscribe:
http://lists.wispa.org/mailman/listinfo/wireless

Archives: http://lists.wispa.org/pipermail/wireless/






WISPA Wants You! Join today!
http://signup.wispa.org/

 
WISPA Wireless List: wireless@wispa.org

Subscribe/Unsubscribe:
http://lists.wispa.org/mailman/listinfo/wireless

Archives: http://lists.wispa.org/pipermail/wireless/


Re: [WISPA] Lightning arrestors

2009-11-28 Thread Michael Baird
They are rflinx quarterwave rated from 2.1-2.7, they were used instead 
of polyphasers on a couple of new backhauls we deployed. I'm seeing 
unusual noise floors on both of them which I know are incorrect due to 
the readings from previous 5.8 gear that was replaced. I'm just 
wondering if this would be a symptom, what does the frequency range 
actually mean on those I suspect it would make my noise floors go out of 
whack like that. They aren't in use and I will replace them before going 
into production, I'm just curious.

Regards
Michael Baird
 I second that.  Most ARE rated for up to 5.8 but don't seem to list it
 unless you ask.  Last time I purchased them I found the ones listed for 5.8
 only were much more $$ than the 2.4.  Turned out the 2.4's I was buying were
 indeed rated to 5.8, I just had to ask to find out.  Makes sense, why make 2
 when you can do the same with just one product.



 Bob-



 -Original Message-
 From: wireless-boun...@wispa.org [mailto:wireless-boun...@wispa.org] On
 Behalf Of Nathan Stooke
 Sent: Saturday, November 28, 2009 11:19 PM
 To: 'WISPA General List'
 Subject: Re: [WISPA] Lightning arrestors

 Hello,

   Yes if it is not rated for up to 5.8ghz.  You should be able to find
 specs on the lightning arrestor.

 -Original Message-
 From: wireless-boun...@wispa.org [mailto:wireless-boun...@wispa.org] On
 Behalf Of Michael Baird
 Sent: Saturday, November 28, 2009 10:01 PM
 To: WISPA General List
 Subject: [WISPA] Lightning arrestors

 What happens if you use a 2.4 lightning arrestor on a 5.8 radio? Will it 
 cause degraded signal or incorrect lightning protection.

 Regards
 Michael Baird


 
 
 WISPA Wants You! Join today!
 http://signup.wispa.org/
 
 
  
 WISPA Wireless List: wireless@wispa.org

 Subscribe/Unsubscribe:
 http://lists.wispa.org/mailman/listinfo/wireless

 Archives: http://lists.wispa.org/pipermail/wireless/



 
 
 WISPA Wants You! Join today!
 http://signup.wispa.org/
 
 
  
 WISPA Wireless List: wireless@wispa.org

 Subscribe/Unsubscribe:
 http://lists.wispa.org/mailman/listinfo/wireless

 Archives: http://lists.wispa.org/pipermail/wireless/





 
 WISPA Wants You! Join today!
 http://signup.wispa.org/
 
  
 WISPA Wireless List: wireless@wispa.org

 Subscribe/Unsubscribe:
 http://lists.wispa.org/mailman/listinfo/wireless

 Archives: http://lists.wispa.org/pipermail/wireless/
   




WISPA Wants You! Join today!
http://signup.wispa.org/

 
WISPA Wireless List: wireless@wispa.org

Subscribe/Unsubscribe:
http://lists.wispa.org/mailman/listinfo/wireless

Archives: http://lists.wispa.org/pipermail/wireless/


Re: [WISPA] Lightning arrestors

2009-11-28 Thread Chuck Hogg
We carry quite a few different ones.  Most popular are the PolyPhasers,
go thru 7GHz.

http://www.quicklinkwireless.com/items.asp?Cc=LIGHTNINGPROTiTpStatus=0;
Tp=Bc=


Regards,
Chuck Hogg
Shelby Broadband
502-722-9292
ch...@shelbybb.com
http://www.shelbybb.com


-Original Message-
From: wireless-boun...@wispa.org [mailto:wireless-boun...@wispa.org] On
Behalf Of Robert West
Sent: Sunday, November 29, 2009 12:08 AM
To: nsto...@wisperisp.com; 'WISPA General List'
Subject: Re: [WISPA] Lightning arrestors

I second that.  Most ARE rated for up to 5.8 but don't seem to list it
unless you ask.  Last time I purchased them I found the ones listed for
5.8
only were much more $$ than the 2.4.  Turned out the 2.4's I was buying
were
indeed rated to 5.8, I just had to ask to find out.  Makes sense, why
make 2
when you can do the same with just one product.



Bob-



-Original Message-
From: wireless-boun...@wispa.org [mailto:wireless-boun...@wispa.org] On
Behalf Of Nathan Stooke
Sent: Saturday, November 28, 2009 11:19 PM
To: 'WISPA General List'
Subject: Re: [WISPA] Lightning arrestors

Hello,

Yes if it is not rated for up to 5.8ghz.  You should be able to
find
specs on the lightning arrestor.

-Original Message-
From: wireless-boun...@wispa.org [mailto:wireless-boun...@wispa.org] On
Behalf Of Michael Baird
Sent: Saturday, November 28, 2009 10:01 PM
To: WISPA General List
Subject: [WISPA] Lightning arrestors

What happens if you use a 2.4 lightning arrestor on a 5.8 radio? Will it

cause degraded signal or incorrect lightning protection.

Regards
Michael Baird





WISPA Wants You! Join today!
http://signup.wispa.org/



 
WISPA Wireless List: wireless@wispa.org

Subscribe/Unsubscribe:
http://lists.wispa.org/mailman/listinfo/wireless

Archives: http://lists.wispa.org/pipermail/wireless/






WISPA Wants You! Join today!
http://signup.wispa.org/



 
WISPA Wireless List: wireless@wispa.org

Subscribe/Unsubscribe:
http://lists.wispa.org/mailman/listinfo/wireless

Archives: http://lists.wispa.org/pipermail/wireless/







WISPA Wants You! Join today!
http://signup.wispa.org/


 
WISPA Wireless List: wireless@wispa.org

Subscribe/Unsubscribe:
http://lists.wispa.org/mailman/listinfo/wireless

Archives: http://lists.wispa.org/pipermail/wireless/



WISPA Wants You! Join today!
http://signup.wispa.org/

 
WISPA Wireless List: wireless@wispa.org

Subscribe/Unsubscribe:
http://lists.wispa.org/mailman/listinfo/wireless

Archives: http://lists.wispa.org/pipermail/wireless/