Author Archives: Brock Tice

Freedom and its Cost

This started out as a very different post. It was going to be a post about weev. Gradually, with the latest Snowden leaks and some other current news, it has become something else. I actually abandoned that draft to start fresh.

I truly believe in American exceptionalism, for one reason only — I believe that this country was founded as the most true embodiment of Enlightenment principles that has ever been intentionally created on this Earth, though I don’t believe we’ve always maintained those principles.

We have, perhaps, the strongest protections for freedom of speech in the world. We are free to speak ill of our politicians. We are free to praise Nazism (a la weev’s recent bent). And we’re free to back those rights up with force, or at least to own the implements to effect that force. Our founders were revolutionaries, and seemed to believe that if the government they created violated the principles upon which it was founded, revolution was warranted again. I think that a violent revolution currently has too high of a cost, and I hope we can avoid it indefinitely. But a revolution in attitude might be needed.

Most people don’t really care about the stuff I mentioned above. They may pay lip-service to it the way the casually-religious pay lip-service to God. They care about their day-to-day lives, and that’s fair. They’re subject to cognitive biases, and so am I. They don’t generally see how this stuff affects them. Or they do, and it doesn’t really affect them much. They see scary things like the WTC having planes flown into it. They see beheadings on YouTube. They see people saying things we all know are Wrong and Hateful. They see kids being shot in a school. And then they start rationalizing loss of freedom. They say they don’t mind the TSA, because it keeps them safe. They don’t mind the NSA intruding on the privacy of nearly everyone in the developed world, because what do they have to hide? They don’t mind when people are sent to jail under terrible laws because they’re doing and saying Bad Things. They support “common-sense” gun-control laws, because of the deaths that can be avoided.

I’m writing this partly so I don’t have to explain things to people in the future, so I don’t have to have a protracted Twitter conversation again. I am willing to accept people saying horrible things in exchange for freedom of speech. I am willing to have the occasional firearms accident or “mass shooting” incident in exchange for the right to keep and bear arms. I am willing to have the occasional terrorist attack in exchange for my privacy. I will defend those rights for others vehemently, even if I disagree with their words or actions 100%. That’s the cost of what we have here in the USA (though increasingly we are losing it). To me, it’s a cost that’s worthwhile.

BEGIN EDIT 2014-10-16
Almost as if on cue, the current director of the FBI has been saying how encrypting smartphones by default will prevent the police from solving crimes. We already know we have the opposite problem — the police have been searching smartphones despite the dubious legality of that activity. I would rather have a few (and it’s really only a few) crimes go unsolved than have the police able to search (legally or illegally) a bunch of stuff that they’re not really entitled to at a whim.

From the Supreme Court in that second-to-last link:

“We cannot deny that our decision today will have an impact on the ability of law enforcement to combat crime,” Roberts wrote.

The right to privacy, he said, “comes at a cost.”

END EDIT 2014-10-16


Epilogue: Values

I enjoy learning things, both facts I didn’t know and opinions of others, via discussion, what in some circles is termed “forensics and debate”. I’m happy to change my opinion if the information I get warrants it. What I’ve learned, however, is that sometimes two people can agree on all the facts and yet disagree on the conclusions. Abortion is a great example of that. This comes down to values, and we all have different values. We all weigh some things as more important than others, and those things rarely agree completely between two people. I recognize that this post is based on my personal values, and even though you may agree with the same facts that I do, we may disagree on these values. That’s OK. Feel free to comment if you’d like to try to convince me otherwise.

Gun terminology

It seems like every time guns are in the news someone misuses terminology, usually in the name of making something sound scary. I’m posting these here so I can refer back to this later.

  • Semi-automatic = loads another round after a round is fired, requires a trigger pull for each shot. Basically any modern gun that’s not break-action, lever action, pump action, or revolver.
  • Fully automatic = can fire multiple shots with one trigger pull
  • Assault rifle = fully automatic rifle
  • Assault weapon = anti-gun term made up to make semi-automatic weapons sound more scary
  • Magazine = holds bullets
  • Clip = holds your pen in your shirt pocket (mostly)

Passing vlans through to KVM guests in Linux

If you want to be able to pass VLANs along to your linux guests from a linux KVM host, there’s a trick.

The most common way is to create special bridges for each vlan you want to pass, but that’s a big pain. Such an approach is detailed here.

After a surprisingly large amount of searching, I came across this article, which details the first way, and then another — the way to trunk vlans to KVM guests. Here’s the key quote that made me understand what I needed to do:

The difference is that when subinterfaces are defined on eth0, as noted previously Linux will strip the vlan tag, but when defined on the bridge, the vlan tags are kept.

Basically, if you put the vlans on the ethernet device, the tags will get stripped and not pass through the bridge to the guests. If you put the vlans on the bridge, the tags get passed through to the guest. So, a brief example.

You make a bridge br0 with eth0 on the kvm host. You then set up your guest to use br0 as its network interface (eth0 in the guest). You’d expect at this point that vlan tags would be passed. They won’t. However, if you want to pass vlan 2 through to the guest, then you add vlan 2 to br0 on the host (host: br0.2). Then, you add vlan 2 to eth0 on the guest (eth0.2). Boom. The vlan tag 2 is being passed through to eth0.2 on the guest.

Thanks so much to David Vassallo for figuring this out and posting it on his blog. Here’s hoping I can amplify the signal to help future seekers of this information.

VLANs, Crouton, and ChromeOS

I bought some cheap Acer c710 chromebooks, used, off of eBay for WISP use. One as a loaner for customers complaining of speed problems, when we suspect their systems may be the culprit.

The other I’m testing as a field laptop for use in the WISP. We keep the management interfaces of our equipment on a separate VLAN (802.1q), and frequently need to access that VLAN in the field. I couldn’t find any information online about whether this is supported in Linux.

Once I got the chromebooks, I put one in developer mode, and found that the 8021q kernel module is already available. That’s good, because it means I can keep running ChromeOS and get VLAN tagging, I don’t have to install a full-blown Linux system.

Using crouton, it’s possible to add a vlan to the ethernet port, and configure it. Once that’s done, the crouton chroot can actually be exited and unmounted and the vlan will continue to function correctly until the device is rebooted.

Now I just need to figure out how to automate the process of setting up the normal vlan(s) I use.