One of the most important thing about CCDE exam is security. We all think that it is secure, it is not cheatable. There is no CCDE dump. We all believe that. CCDE exam has been around for more than 8 years and there are still only less than 400 people in the world. It seems […]
The post Keeping the Cisco CCDE exam secure ! appeared first on Cisco Network Design and Architecture | CCDE Bootcamp | orhanergun.net.
I was discussing a totally unrelated topic with Terry Slattery when he mentioned a quote from the Mythical Man-Month. It got me curious, I started exploring and found out I can get the book as part of my Safari subscription.
Read more ...I had just lost the RAID array that hosts my ESXi data store. I didn't yet know that's what had happened, but with some investigation, some embarrassment, and a bit of swearing, I would find out that an oversight on my part three years ago would lead to this happening.
Jean Hatzfeld’s Machete Season: the Killers in Rwanda Speak is a much different book than the Pol Pot history that I covered a couple of weeks ago. It’s harder to write about, because it’s just what the title describes: the killers in their own words, interspersed with short contextual explanations of the events surrounding the Rwandan genocide.
Hatzfeld – who has also written two books about the horrific Baltic wars of the 1990s – argues that many of what the mainstream media call genocides should be described as war crimes instead: brutal, unacceptable mass killings of defenseless humans that nonetheless take place in the the context of reducing a population’s ability to wage war. Genocide, he argues, is a term that should be reserved to describe an effort to completely exterminate a population and leave it incapable of ever recovering. In the Rwandan genocide, for example, the Hutu killers often preferred to murder women and children first, because it would leave the Tutsi population less capable of carrying on to the next generation.
Modern Rwanda has three main ethnic groups: the majority Hutu, the minority Tutsi, and a small population of Twa jungle-dwelling hunter-gatherers. At the time of Continue reading
Arris wants to buy the Ruckus wireless business.
Arris is looking to buy Brocade’s network edge business, which is the most valuable of the assets being sold, according to the sources. Arris is not in talks to buy other parts of the business being divested by Brocade that include data centers, switching and software, the sources added.
Apparently talks to buy other parts of the business in whole or part are not working out.
Broadcom had divided up Brocade’s divestiture into three pieces after an earlier deal to sell the whole business to a private equity firm fell apart late last year, according to the sources. A private equity firm could still step up to buy all three pieces, the people said.
Arris in bid for Brocade network unit: sources | Reuters
The post Arris in bid for Brocade network unit: sources | Reuters appeared first on EtherealMind.
Acceptable quality open source voice codec in 700 bps
My endeavor to produce a digital voice mode that competes with SSB continues. For a big chunk of 2016 I took a break from this work as I was gainfully employed on a commercial HF modem project. However since December I have once again been working on a 700 bit/s codec. The goal is voice quality roughly the same as the current 1300 bit/s mode. This can then be mated with the coherent PSK modem, and possibly the 4FSK modem for trials over HF channels.
The post Response: Codec 2 700C | Rowetel appeared first on EtherealMind.
Four rules for SRE:
Good rules, can’t argue with this as starting point. The devil in the detail of all of these and Enterprise IT does none of them.
Site Reliability Engineering – Medium:
The post Response: Site Reliability Engineering – Medium appeared first on EtherealMind.
For various reasons, I’m changing my DNS provider; the new provider will not support the .guru TLD, so I’m going to drop it, and just stick with rule11.us. I think most folks are pointing to rule11.us anyway, but I thought I’d post this here so you’d see if it not.
The post Moving to a Single Domain appeared first on 'net work.
For various reasons, I’m changing my DNS provider; the new provider will not support the .guru TLD, so I’m going to drop it, and just stick with rule11.us. I think most folks are pointing to rule11.us anyway, but I thought I’d post this here so you’d see if it not.
The post Moving to a Single Domain appeared first on 'net work.
I ran a Ubiquiti Edge Router Lite as my home firewall for a couple of years. The box had a nice GUI with CLI option, and had no problem keeping up with my > 100Mbps Internet connection. The box died after a lengthy power failure that drained the large UPS buffering electrons in my basement equipment rack.
I’m not sure what happened to the ERLite-3, but it’s as dead as the bird in the Python parrot sketch. The firewalls appears to boot. The lights come on, etc. However, the box passes no traffic and responds to no ARP requests. I can get no serial console output from it. I even tried a full factory reset, to no effect.
Until its early death, the little firewall had a trouble-free two year run. For $99 spent according to my Amazon order history, I don’t feel too badly about the loss.
Before throwing it in the bin, I decided to open it up and take a look at the mainboard. Here’s a notated picture for you. Enjoy.
Ever wondered what is the maximum route metric value you can configure on Linux? man interface
and man ip
state that route metric is a number, but don’t specify its range.
# ip route add 192.168.113.0/24 via 10.0.10.1 metric 0 # ip route add 192.168.113.0/24 via 10.0.10.1 metric 4294967295 # ip route add 192.168.113.0/24 via 10.0.10.1 metric 4294967296 Error: argument "4294967296" is wrong: "metric" value is invalid # ip route 192.168.113.0/24 via 10.0.10.1 dev eth0 192.168.113.0/24 via 10.0.10.1 dev eth0 metric 4294967295
It looks like Linux route metric is an unsigned 32-bit integer, ranging from 0 to 4294967295. As you already know a route with the lowest metric is preferred.
This is one of those ‘I must be living under a rock’ things. I’m not sure how I’ve never heard of TMUX before but it’s really pretty awesome. I initially came across it when searching for a way to share a terminal session with another user. It does that quite well but it’s also a great terminal session manager allowing for pane, window, and session management. Let’s take a look at a quick example to show you what I mean.
Here we have a server called ‘tmuxtest’. The server already has TMUX on it by default but if it’s not there you can easily install it (sudo apt-get install tmux, etc). So let’s say I want to start a new session. The easiest way to do this is to just type ‘tmux’..
Now we’re in TMUX. We are in what’s called a ‘session’. The session can contain multiple panes and multiple windows. For instance, if I wanted to create a second pane I could do by pressing ‘Ctrl-b + %’…
Notice that the screen on the right, the new one, has a green boarder around it. That’s my active screen. Now if I want to split this screen horizontally Continue reading