Re: [Ubnt_users] Custom Firmware

2016-08-03 Thread Matt Hardy via Ubnt_users
Sorry for the delay ... I actually just asked about this this morning ;)

After posting on the list, I got quite a few requests. I should have an
update soon.

-Matt

On Wed, Aug 3, 2016 at 5:12 PM, Kees H  wrote:

> Has anyone received the custom firmware?
>
> - Original Message -
> *From:* Matt Hardy via Ubnt_users 
> *To:* Ubiquiti Users Group 
> *Sent:* Thursday, June 16, 2016 10:04 AM
> *Subject:* Re: [Ubnt_users] Custom Firmware
>
> Sure send me an email off list and I can help...
> On Jun 16, 2016 10:35 AM, "Timothy D. Hittesdorf" <
> timothy.hittesd...@mhtcinc.com> wrote:
>
>> Pretty pretty please Ubnt???  It would be really awesome if there could
>> be a website where you could upload your config file and have it
>> auto-compile it on demand.
>>
>>
>>
>> *From: *Josh Luthman 
>> *Reply-To: *Ubiquiti Users Group 
>> *Date: *Thursday, June 16, 2016 at 9:03 AM
>> *To: *Ubiquiti Users Group 
>> *Subject: *Re: [Ubnt_users] Custom Firmware
>>
>>
>>
>> You could ask very nicely.
>>
>>
>>
>> It was possible until 5.6.4 with post scripts.
>>
>>
>>
>>
>> Josh Luthman
>> Office: 937-552-2340
>> Direct: 937-552-2343
>> 1100 Wayne St
>> Suite 1337
>> Troy, OH 45373
>>
>>
>>
>> On Thu, Jun 16, 2016 at 9:51 AM, Timothy D. Hittesdorf <
>> timothy.hittesd...@mhtcinc.com> wrote:
>>
>> Does anyone know if Ubnt will repackage firmware with a custom default
>> config or if there’s a way to do this ourselves?  If we lose communications
>> for whatever reason, we would really like to be able to tell the customer
>> to just reset the radio and be able to connect to it on our default info.
>>
>>
>> ___
>> Ubnt_users mailing list
>> Ubnt_users@wispa.org
>> http://lists.wispa.org/mailman/listinfo/ubnt_users
>>
>>
>>
>> ___
>> Ubnt_users mailing list
>> Ubnt_users@wispa.org
>> http://lists.wispa.org/mailman/listinfo/ubnt_users
>>
>> --
>
> ___
> Ubnt_users mailing list
> Ubnt_users@wispa.org
> http://lists.wispa.org/mailman/listinfo/ubnt_users
>
>
___
Ubnt_users mailing list
Ubnt_users@wispa.org
http://lists.wispa.org/mailman/listinfo/ubnt_users


Re: [Ubnt_users] BGP Upgrade question

2016-08-03 Thread Michael Bear
Nathan,

I'm carbon copying the Ubnt Users list for the benefit of everyone.

Short Answer:
You need a valid routing table entry for the network you're advertising.
Just specifying the networks to advertise via BGP is not enough.

Say you have a /22 that you want to advertise:
If you don't have that entire /22 on a single interface, you won't have
the /22 prefix in your routing table. Instead you'd have whatever
smaller networks (longer prefixes of /23 or /24, etc) in your routing
table. At that point you'd need to add a static route so you aggregate
the smaller networks into the full /22.

Until you add what EdgeOS calls a blackhole route (type=blackhole on
MikroTik RouterOS and null route on Cisco IOS), your router doesn't meet
BGP criteria (you'd see the route should not be valid * and best > on
your router when showing bgp routes) for advertising the /22 to its
peers.

Interesting that pointing the route to the router's own IP address
worked.
With the new routing stack changes in 1.8.0 for EdgeOS, Ubnt removed
Quagga and created a "proprietary routing stack" that EdgeOS uses now.
That may explain the changes in behavior between versions...

Regards,
Mike


On Wed, 2016-08-03 at 11:10 -0600, Nathan Babcock wrote:

> Mike,
> 
> We performed the upgrade this evening and discovered what changed
> during the upgrade, We have the networks explicitly identified as far
> as I understand it but no traffic would pass.  Pulled up the config of
> the now upgraded router, and discovered that our static routes that we
> configured were no longer present.  Attempted to re-add them and got
> the following error:  
> 
> 
> Nexthop address cannot be same as own interface address(later learned
> we are supposed to be using blackhole routes for this)
> 
> 
> 
> We did have the route pointing to the routers own public interface
> which is where we need it to go, but apparently not able to do this
> any longer with the new version.  As for what we are advertising, we
> are only advertising our static routes and nothing more.  With that,
> we have three items being sent to our upstream provider even though we
> have 70 entries on that routers route table.  
> 
> 
> 
> I did find this site, which solved everything for me as I am now
> working correctly, and have a much better understanding of how to
> setup bgp for a single upstream provider then when this all started:
> http://www.networknoob.net/category/bgp/
> 
> Your information was a good first step and after my research it looks
> like i have it all working correctly now, and am advertising the right
> networks and nothing more.  What i didnt truly understand and not sure
> i entirely do, is why do i have to create the static route and specify
> the network in the bgp policy for the ASN?  Shouldnt specifying the
> network in the BGP ASN be sufficient?  Until i put in the static
> routes, our router would not advertise any routes.  
> 
> 
> 
> On 8/1/2016 8:58 AM, Michael Bear wrote:
> 
> > 
> > Nathan,
> > 
> > You already have "network X.X.X.X" statements for two networks.
> > If you can't redistribute then one option is to add explicit bgp network
> > statements.
> > 
> > Your BGP RID is the same as your peer's IP address, hopefully this is a
> > typo when obfuscating your IP addresses.
> > 
> > I'm surprised you aren't filtering your announcements with a route-map
> > and/or prefix-list. Might look and see what you're advertising to your
> > upstream (potentially a bunch of cruft without prefix-list/route-map
> > when using redistribution).
> > 
> > show ip bgp neighbors Z.Z.Z.Z advertised-routes
> > 
> > If you need route maps, they're nested under "policy".
> > set policy route-map 
> > set policy prefix-list 
> > 
> > set protocols bgp 53000 neighbor Z.Z.Z.Z route-map 
> > run clear ip bgp neighbors Z.Z.Z.Z soft out
> > run show ip bgp summary
> > run show ip bgp neighbors Z.Z.Z.Z advertised-routes
> > 
> > Syntax appears to be similar, but now that Brocade and VyOS are separate
> > Vyatta code-bases I wouldn't bet on it.
> > http://www.brocade.com/content/dam/common/documents/content-types/configuration-guide/vyatta-routingpolicies-3.5r3-v01.pdf
> > 
> > Hope that helps.
> > Regards,
> > Mike
> > 
> > On Sun, 2016-07-31 at 22:26 -0600, nath...@sswireless.net wrote:
> > 
> > > I am rather green to BGP setups, and need to upgrade our edge router.
> > >  PResently we are using redistribute static routes to advertise our
> > > networks.  As I am sure you know, with 1.8 that is now deprecated.  I
> > > need assistance in how to configure our BGP session post 1.8 so that
> > > we can continue to work.  
> > > 
> > > set protocols bgp 53000 neighbor 71.10.13.42 description Plateau
> > > set protocols bgp 53000 neighbor 71.10.13.42 remote-as 21782
> > > set protocols bgp 53000 neighbor 71.10.13.42 soft-reconfiguration
> > > inbound
> > > set protocols bgp 53000 network 70.11.128.0/21
> > > set protocols bgp 53000 network 19.8.146.0/22
> > > set protocols bgp 53000 

Re: [Ubnt_users] Does the UVC Pro camera have an external audio port

2016-08-03 Thread Rory Conaway
Thanks guys.

Rory

From: ubnt_users-boun...@wispa.org [mailto:ubnt_users-boun...@wispa.org] On 
Behalf Of Steve Barnes
Sent: Wednesday, August 3, 2016 7:39 AM
To: Matt Hardy; Ubiquiti Users Group
Subject: Re: [Ubnt_users] Does the UVC Pro camera have an external audio port

OK so that is an accessory not a feature by default.

Steve Barnes
Wireless Operations Manager
PCSWIN.COM
NLBC.COM

From: ubnt_users-boun...@wispa.org 
[mailto:ubnt_users-boun...@wispa.org] On Behalf Of Matt Hardy via Ubnt_users
Sent: Wednesday, August 03, 2016 10:29 AM
To: Ubiquiti Users Group >
Subject: Re: [Ubnt_users] Does the UVC Pro camera have an external audio port

Hey Steve,
Take a look at the bottom of page 3:

https://dl.ubnt.com/datasheets/unifi/UniFI_Video_DS.pdf

I did a quick search and found a few available ...

-Matt

On Wed, Aug 3, 2016 at 10:24 AM, Steve Barnes 
> wrote:
I have not seen that in any documentation can you point to that.

Steve Barnes
Wireless Operations Manager
PCSWIN.COM
NLBC.COM

From: ubnt_users-boun...@wispa.org 
[mailto:ubnt_users-boun...@wispa.org] On 
Behalf Of Brandon Gilles via Ubnt_users
Sent: Wednesday, August 03, 2016 10:16 AM
To: Ubiquiti Users Group >
Subject: Re: [Ubnt_users] Does the UVC Pro camera have an external audio port

Yes, it does.  There's a harness connector with the port exposed.

On Wednesday, August 3, 2016, Rory Conaway 
> wrote:
I can’t find this answer anywhere.  I need to add a microphone farther away.

Rory

From: ubnt_users-boun...@wispa.org 
[mailto:ubnt_users-boun...@wispa.org] On Behalf Of Steve Barnes
Sent: Wednesday, August 3, 2016 4:49 AM
To: Ubiquiti Users Group
Subject: Re: [Ubnt_users] Does the UVC Pro camera have an external audio port

No not sure why you would want one. Its all IP based

Steve Barnes
Wireless Operations Manager
PCSWIN.COM
NLBC.COM

From: ubnt_users-boun...@wispa.org 
[mailto:ubnt_users-boun...@wispa.org] On Behalf Of Rory Conaway
Sent: Tuesday, August 02, 2016 10:13 PM
To: Ubiquiti Users Group >
Subject: [Ubnt_users] Does the UVC Pro camera have an external audio port



Rory Conaway • Triad Wireless • CEO
4226 S. 37th Street • Phoenix • AZ 85040
602-426-0542
r...@triadwireless.net
www.triadwireless.net

“There are only two seasons - winter and Baseball.” - Bill Veeck



___
Ubnt_users mailing list
Ubnt_users@wispa.org
http://lists.wispa.org/mailman/listinfo/ubnt_users

___
Ubnt_users mailing list
Ubnt_users@wispa.org
http://lists.wispa.org/mailman/listinfo/ubnt_users


Re: [Ubnt_users] Does the UVC Pro camera have an external audio port

2016-08-03 Thread Steve Barnes
I have not seen that in any documentation can you point to that.

Steve Barnes
Wireless Operations Manager
PCSWIN.COM
NLBC.COM

From: ubnt_users-boun...@wispa.org [mailto:ubnt_users-boun...@wispa.org] On 
Behalf Of Brandon Gilles via Ubnt_users
Sent: Wednesday, August 03, 2016 10:16 AM
To: Ubiquiti Users Group 
Subject: Re: [Ubnt_users] Does the UVC Pro camera have an external audio port

Yes, it does.  There's a harness connector with the port exposed.

On Wednesday, August 3, 2016, Rory Conaway 
> wrote:
I can’t find this answer anywhere.  I need to add a microphone farther away.

Rory

From: 
ubnt_users-boun...@wispa.org
 
[mailto:ubnt_users-boun...@wispa.org]
 On Behalf Of Steve Barnes
Sent: Wednesday, August 3, 2016 4:49 AM
To: Ubiquiti Users Group
Subject: Re: [Ubnt_users] Does the UVC Pro camera have an external audio port

No not sure why you would want one. Its all IP based

Steve Barnes
Wireless Operations Manager
PCSWIN.COM
NLBC.COM

From: 
ubnt_users-boun...@wispa.org
 
[mailto:ubnt_users-boun...@wispa.org]
 On Behalf Of Rory Conaway
Sent: Tuesday, August 02, 2016 10:13 PM
To: Ubiquiti Users Group 
>
Subject: [Ubnt_users] Does the UVC Pro camera have an external audio port



Rory Conaway • Triad Wireless • CEO
4226 S. 37th Street • Phoenix • AZ 85040
602-426-0542
r...@triadwireless.net
www.triadwireless.net

“There are only two seasons - winter and Baseball.” - Bill Veeck


___
Ubnt_users mailing list
Ubnt_users@wispa.org
http://lists.wispa.org/mailman/listinfo/ubnt_users


Re: [Ubnt_users] Does the UVC Pro camera have an external audio port

2016-08-03 Thread Matt Hardy via Ubnt_users
Hey Steve,
Take a look at the bottom of page 3:

https://dl.ubnt.com/datasheets/unifi/UniFI_Video_DS.pdf

I did a quick search and found a few available ...

-Matt

On Wed, Aug 3, 2016 at 10:24 AM, Steve Barnes  wrote:

> I have not seen that in any documentation can you point to that.
>
>
>
> *Steve Barnes*
>
> Wireless Operations Manager
>
> *PCSWIN.COM *
>
> *NLBC.COM *
>
>
>
> *From:* ubnt_users-boun...@wispa.org [mailto:ubnt_users-boun...@wispa.org]
> *On Behalf Of *Brandon Gilles via Ubnt_users
> *Sent:* Wednesday, August 03, 2016 10:16 AM
> *To:* Ubiquiti Users Group 
> *Subject:* Re: [Ubnt_users] Does the UVC Pro camera have an external
> audio port
>
>
>
> Yes, it does.  There's a harness connector with the port exposed.
>
> On Wednesday, August 3, 2016, Rory Conaway  wrote:
>
> I can’t find this answer anywhere.  I need to add a microphone farther
> away.
>
>
>
> Rory
>
>
>
> *From:* ubnt_users-boun...@wispa.org [mailto:ubnt_users-boun...@wispa.org]
> *On Behalf Of *Steve Barnes
> *Sent:* Wednesday, August 3, 2016 4:49 AM
> *To:* Ubiquiti Users Group
> *Subject:* Re: [Ubnt_users] Does the UVC Pro camera have an external
> audio port
>
>
>
> No not sure why you would want one. Its all IP based
>
>
>
> *Steve Barnes*
>
> Wireless Operations Manager
>
> *PCSWIN.COM *
>
> *NLBC.COM *
>
>
>
> *From:* ubnt_users-boun...@wispa.org [mailto:ubnt_users-boun...@wispa.org]
> *On Behalf Of *Rory Conaway
> *Sent:* Tuesday, August 02, 2016 10:13 PM
> *To:* Ubiquiti Users Group 
> *Subject:* [Ubnt_users] Does the UVC Pro camera have an external audio
> port
>
>
>
>
>
>
>
> *Rory Conaway **• Triad Wireless •** CEO*
>
> *4226 S. 37th Street • Phoenix • AZ 85040*
>
> *602-426-0542 <602-426-0542>*
>
> *r...@triadwireless.net*
>
> *www.triadwireless.net *
>
>
>
> “There are only two seasons - winter and Baseball.” - Bill Veeck
>
>
>
>
>
>
> ___
> Ubnt_users mailing list
> Ubnt_users@wispa.org
> http://lists.wispa.org/mailman/listinfo/ubnt_users
>
>
___
Ubnt_users mailing list
Ubnt_users@wispa.org
http://lists.wispa.org/mailman/listinfo/ubnt_users


Re: [Ubnt_users] Does the UVC Pro camera have an external audio port

2016-08-03 Thread Brandon Gilles via Ubnt_users
Yes, it does.  There's a harness connector with the port exposed.

On Wednesday, August 3, 2016, Rory Conaway  wrote:

> I can’t find this answer anywhere.  I need to add a microphone farther
> away.
>
>
>
> Rory
>
>
>
> *From:* ubnt_users-boun...@wispa.org
>  [mailto:
> ubnt_users-boun...@wispa.org
> ] *On
> Behalf Of *Steve Barnes
> *Sent:* Wednesday, August 3, 2016 4:49 AM
> *To:* Ubiquiti Users Group
> *Subject:* Re: [Ubnt_users] Does the UVC Pro camera have an external
> audio port
>
>
>
> No not sure why you would want one. Its all IP based
>
>
>
> *Steve Barnes*
>
> Wireless Operations Manager
>
> *PCSWIN.COM *
>
> *NLBC.COM *
>
>
>
> *From:* ubnt_users-boun...@wispa.org
>  [
> mailto:ubnt_users-boun...@wispa.org
> ] *On
> Behalf Of *Rory Conaway
> *Sent:* Tuesday, August 02, 2016 10:13 PM
> *To:* Ubiquiti Users Group  >
> *Subject:* [Ubnt_users] Does the UVC Pro camera have an external audio
> port
>
>
>
>
>
>
>
> *Rory Conaway **• Triad Wireless •** CEO*
>
> *4226 S. 37th Street • Phoenix • AZ 85040*
>
> *602-426-0542*
>
> *r...@triadwireless.net
> *
>
> *www.triadwireless.net *
>
>
>
> “There are only two seasons - winter and Baseball.” - Bill Veeck
>
>
>
>
>
___
Ubnt_users mailing list
Ubnt_users@wispa.org
http://lists.wispa.org/mailman/listinfo/ubnt_users


Re: [Ubnt_users] airprism

2016-08-03 Thread James Ober
Silly man, you have to take it apart.

On Aug 1, 2016 11:56 PM, "CBB - Jay Fuller" 
wrote:

>
> so aside from the label on the case, how do you know if you have an
> airprism 5 ghz ac rocket?
> I've just launched one and am seeing 147/147 on 20 mhz channels - - is
> that how i know?
> i don't see anything on the interface that shows it.
>
> Additionally when running speedtests back to the internet (over a sector,
> then through a airfiber 3 ghz
> backhaul) i'm seeing half the upload as the download.
>
> I am using a DFS channel - - but since the radio is literally .4 miles
> away i'm still coming in in the -40s/
> -50s
>
> fun to play with new toys ;)
>
>
>
> ___
> Ubnt_users mailing list
> Ubnt_users@wispa.org
> http://lists.wispa.org/mailman/listinfo/ubnt_users
>
>
___
Ubnt_users mailing list
Ubnt_users@wispa.org
http://lists.wispa.org/mailman/listinfo/ubnt_users


Re: [Ubnt_users] Does the UVC Pro camera have an external audio port

2016-08-03 Thread Rory Conaway
I can't find this answer anywhere.  I need to add a microphone farther away.

Rory

From: ubnt_users-boun...@wispa.org [mailto:ubnt_users-boun...@wispa.org] On 
Behalf Of Steve Barnes
Sent: Wednesday, August 3, 2016 4:49 AM
To: Ubiquiti Users Group
Subject: Re: [Ubnt_users] Does the UVC Pro camera have an external audio port

No not sure why you would want one. Its all IP based

Steve Barnes
Wireless Operations Manager
PCSWIN.COM
NLBC.COM

From: ubnt_users-boun...@wispa.org 
[mailto:ubnt_users-boun...@wispa.org] On Behalf Of Rory Conaway
Sent: Tuesday, August 02, 2016 10:13 PM
To: Ubiquiti Users Group >
Subject: [Ubnt_users] Does the UVC Pro camera have an external audio port



Rory Conaway * Triad Wireless * CEO
4226 S. 37th Street * Phoenix * AZ 85040
602-426-0542
r...@triadwireless.net
www.triadwireless.net

"There are only two seasons - winter and Baseball." - Bill Veeck


___
Ubnt_users mailing list
Ubnt_users@wispa.org
http://lists.wispa.org/mailman/listinfo/ubnt_users


Re: [Ubnt_users] ES-16-SG

2016-08-03 Thread Ben Moore via Ubnt_users
Unofficially? ;)  There are a few things in the works...Nothing quite ready
to discuss ;)

thanks,
Ben

On Tue, Aug 2, 2016 at 8:05 PM, Brett A Mansfield <
li...@silverlakeinternet.com> wrote:

> Thanks Ben!
>
> Can you unofficially comment on whether or not there is a 10G EdgeRouter
> in the works?
>
> Thank you,
> Brett A Mansfield
>
> On Aug 2, 2016, at 7:19 PM, Ben Moore via Ubnt_users 
> wrote:
>
> These will be officially announced on Wed/Thurs.  we have started shipping
> to distributors so should be 1-2 weeks until start receiving.
>
> Thanks,
> Ben
>
> On Aug 3, 2016, at 1:48 AM, Brett A Mansfield <
> li...@silverlakeinternet.com> wrote:
>
> It is XG. I fat fingered the keyboard.
>
> Thank you,
> Brett A Mansfield
>
> On Aug 2, 2016, at 11:44 AM, Josh Luthman 
> wrote:
>
> Sure it isn't XG?
>
> https://www.streakwave.com/Itemdesc.asp?ic=ES-16-XG=0
>
>
> Josh Luthman
> Office: 937-552-2340
> Direct: 937-552-2343
> 1100 Wayne St
> Suite 1337
> Troy, OH 45373
>
> On Tue, Aug 2, 2016 at 1:38 PM, Brett A Mansfield <
> li...@silverlakeinternet.com> wrote:
>
>> Anyone know when and where I can get one of these???  I cannot even find
>> them on the UBNT website, but the moment I saw it I wanted it! I've been
>> waiting for one of these for some time now!!!
>>
>> Now if only they'll come out with a 10G EdgeRouter solution.
>>
>> Thank you,
>> Brett A Mansfield
>> ___
>> Ubnt_users mailing list
>> Ubnt_users@wispa.org
>> http://lists.wispa.org/mailman/listinfo/ubnt_users
>>
>
> ___
> Ubnt_users mailing list
> Ubnt_users@wispa.org
> http://lists.wispa.org/mailman/listinfo/ubnt_users
>
> ___
> Ubnt_users mailing list
> Ubnt_users@wispa.org
> http://lists.wispa.org/mailman/listinfo/ubnt_users
>
> ___
> Ubnt_users mailing list
> Ubnt_users@wispa.org
> http://lists.wispa.org/mailman/listinfo/ubnt_users
>
>
___
Ubnt_users mailing list
Ubnt_users@wispa.org
http://lists.wispa.org/mailman/listinfo/ubnt_users