|
||||||||
Sunday, July 19, 2026
Sign in to your Google Account
Monday, February 24, 2014
packaging junk for the arista linux platform.
starting points.
https://eos.aristanetworks.com/wiki/index.php/EOS_Extensibility:Packaging_And_Installing_Extensions
http://fedoraproject.org/wiki/How_to_create_an_RPM_package
Monday, November 04, 2013
settled on:
PS1='$(if [[ $USER == root ]]; then echo "\[\033[0;91m\]R\[\033[0;0m\]@\[\033[0;33m\]mb-aye\[\033[0m\]:\W#"; else echo "\[\033[0;92m\]J\[\033[0;0m\]@\[\033[0;33m\]mb-aye\[\033[0m\]:\W$"; fi)'
R@mb-aye:jjaeggli#
J@mb-aye:~$
Friday, July 12, 2013
http://datatracker.ietf.org/doc/draft-ietf-idr-as-private-reservation/
currently in the RFC editer queue expands the private ASN range by adding:
"The end
of the "32-bit Autonomous System Numbers" range will be reserved for
Private Use, and a size of 94,967,295 (value to replace TBD1 below)
corresponding to the range of 4200000000 (value to replace TBD2
below) to 4294967294 (value to replace TBD3 below)."
This is over and above what exists today:
IANA has reserved, for Private Use, a contiguous block of 1023 Autonomous System numbers from the "16-bit Autonomous System Numbers" registry, namely 64512 - 65534 inclusive.the documentation ranges are:64496 - 64511 (16 bit)65536 - 65551 (32 bit)http://tools.ietf.org/html/rfc5398http://www.iana.org/assignments/as-numbers/as-numbers.xhtml
Thursday, May 23, 2013
OSX juniper network connect client has littered your ipv4 routing table with corrupt entries and you need a usable machine again.
Monday, October 15, 2012
Downsizing what I carry...
Pros: Lightweight , High Quality, Attractive
Describe Yourself: Practical, Modern
Was this a gift?: No
So,
I ordered this because I've been looking to downsize into a smaller bag. (the former one was a custom size larger messenger. This involved among other things buying a new laptop.
The EULA indicates that it doesn't quite fit the 11" macbook air. superficially this is true however the dimensions are so close that it wedges in without trouble. none of the timbuk2 sleeves appear to be sufficiently compact to hold an 11" air and fit. So, wool felt sleeve purchased elsewhere solves this issue.
the EULA would be perfect for this application if it were ~ 1/2" larger in width/depth. The back sleeve if you order will not fit the macbook air 11" but does fit an ipad in a protective jacket.
result is, I get:
macbook air
ipad
micro4/3 camera with pancake lens
power supply
assorted cables in the old medium size timbuk2 clear bag
mouse
passport sleeve
and it's full but not bulging.
The eula could be perfect, It isn't but it's rather good. given that it's made of the same material (indeed same color/fabric/lining) as my custom messener I expect that in 5 years I'll still be using it unless I've had to go back to a larger computer. the strap length adjustor is friction based and is not as stiff as the strap adjustor on the larger bags, so it periodically requires adjustment.
(legalese)
Tuesday, November 08, 2011
not installing a bunch of junk in your fib.
Tuesday, September 06, 2011
Wednesday, August 24, 2011
Tuesday, April 05, 2011
Junos 11.1
now to put that in the lab.
http://www.juniper.net/support/products/junos/dom/11.1/
see what other bundles of joy have fallen in/out as a result.
SSH keep-alive interval...
There are basically three place this parameter can be tuned.
in the sshd_config (to adjust on the server daemon)
ClientAliveInterval 30
in the ssh_config (to adjust for the client on a system-wide basis)
ServerAliveInterval 30
or in the user's ~/.ssh/config file (to adjust just for yourself)
ServerAliveInterval 30
what's the right interval?
I'm persistently afraid of timers with a 60 second interval so I aimed to get below that. A proper approach would be 3x the number of keep-alives as the theoretical timer (60s) but 30s is still about 86400 packets a month just to keep this session alive so increasing the frequency if this works is somewhat wasteful.