Ubuntu and Heartbleed

One of the challenges with running my own server now, is making sure everything is properly patched.  With the big stink around the new Heartbleed vulnerability, it made me look into it a bit.

Turns out, in order to fix you can run the following:

sudo apt-get update
sudo apt-get install -y libssl1.0.0 openssl

# Confirm Build Date is at least Aril 7th 2014
openssl version -a

# Restart all services listed by this command:
sudo lsof -n | grep ssl | grep DEL

Sender Policy Framework (SPF) Records

With the move of my domains to Azure instead of Dreamhost (oh, did I not mention that?), one of the things I needed to do was setup some SPF records to keep email from going into junk folders.

Now, there is a great article on creating SPF records, but those that know me know I’m not a big reader when there is a lot of text.  Pictures FTW!

Anyways, as MS is a big proponent of utilizing SPF, they have created an excellent tool to create the record’s text.  Yay team!

Live Domain Issues

I’ve finally migrated my email from google apps to outlook.com.  The key item that caused some issues was using domains.live.com.  I had added the MX record that proved I owned it (and email was flowing correctly).

However, it was always set to “pending” and never switched to “active”.  The problem is that the Hotmail.com MX record is the only MX record you can have.  I had some of the old gmail records listed still, but at a much lower priority (higher number).  Removing them immediately made it switch to active.

Grr.

Published
Categorized as computers

Synology L2TP/IPSec VPN

In the last few releases, Synology has added L2TP/IPSec as an option for a VPN.  I’ve never been able to get it to work on a Windows client until today.

Ports Required:

  • IPSec – UPD 500
  • IPSec NAT Traversal – UDP 4500
  • L2TP – UDP 1701

Fix on Windows clients – http://support.microsoft.com/kb/926179

  • For Win7 and Win8 Machines
    • HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesPolicyAgent
    • New DWORD (32-bit) – AssumeUDPEncapsulationContextOnSendRule
    • Set the Value Data to 2

Update:

Using OpenVPN with port 443, for easier access: http://forum.synology.com/enu/viewtopic.php?t=45545#p215354

Published
Categorized as synology

Windows 8.1 Preview Initial Thoughts

I finally got around to installing Windows 8.1 Public Preview.  I am definitely liking the new digs.  However, I already started to look into how to uninstall due to the following items that I’ve now gotten sorted out (hopefully helps someone else):

  1. I couldn’t connect to any of my local network resources: iSCSI targets, NAS shares, NAS website.  However, I could ping them and SSH just fine.  I thought it was something to do with the iSCSI targets because whenever I tried to enable/disable task manager showed 5MB+ sustained traffic flowing over the network.  Obviously not a good thing.  Well, it turns out it was the “Microsoft LLDP Protocol Driver” on the network connection.  The picture below is what I unchecked to make everything start working again including being able to restart the machine.  And yes, while this is a Hyper-V virtual adapter, similar problems were happening when I wasn’t using Hyper-V (trust me, I tried everything!).Microsoft LLDP Protocol Driver
  2. Windows + S no longer works for OneNote screen clipping!!!!11one  I get that it makes sense for it to go to Search now, but dammit Microsoft, stop messing with my shortcuts!  First it was Windows + Q moving from lync to search (which also brings up search in 8.1 Preview), and now Windows + S is taken from me too!  Grrr

Oh well, with the bad comes the good:

  1. Love the desktop wallpaper being in metro
  2. Love the auto-complete for when I launch an app
  3. Love the minimalistic Start button
  4. I am enjoying IE 11, but we’ll see how long that lasts
  5. One I get the RT tab updated, the labelling of groups will be nice

Overall, seems to be good now that I’ve surpassed the biggest hurdle.

 

Published
Categorized as computers

Bash Pass Variables Between Scripts

I have an app that can call a single script, sending it some variables.  Unfortunately, I needed to run multiple scripts, but both utilizing the same variables.  With bash, there is an easy way to do that, just append “$@” to the script.

For example, the application calls ‘combined_scripts.sh’ with variables $1 through $7.  The contents of ‘combined_scripts.sh’ is below and the variables are passed through to script1 and script2.

#!/bin/sh
./script1.sh "$@"
python ./script2.py "$@"
Published
Categorized as synology

mkvtoolnix on Synology

I’ve been fighting this for awhile as the mkvtoolnix package doesn’t have the correct dependencies when you install it.  Well, after doing a bit more digging I’ve found the answer to get mkvmerge to work!

Packages required:

  • mkvtoolnix
  • bzip2
  • boost-filesystem
  • boost-system

Then, you need to set an environment variable of LANG=C.  This can be done from the command line.

Tada, works!

http://forum.synology.com/enu/viewtopic.php?f=40&t=36845&start=15

*UPDATE – Jan 1 2016*

In addition to the LANG=C environment variable being set, I’ve also had to add in LC_ALL=C.  For me, I run a script that calls mkvmerge, so I just set both of these in the script.

Published
Categorized as synology

Adam’s Quadcopter

Well, after starting to put together my own quadcopter, Adam decided he wanted to get on the bandwagon too.  However, he went down the kit route, where I’m still waiting for all my parts to arrive (not the ones listed in a previous post).

Well, after some initial indoor trials, he took it outside for some flying.  It was a bit windy, and we were only using the small battery packs we had (1300mAh), but it was crazy fun.  The GPS lock on his is nuts.  I wish I was filming when the wind picked up and the quad banked into it…under its own brain power.

These things are crazy fun, and driving one is just like a first person shooter.  I was pretty worried about how the controls would be, but after flying his, I’m not worried at all.  Now I just wait for the servo wires and frame to get here, and I’m off to flying too!

A few pics and videos from the D800…

Enable Enterprise Library Cache Performance Counters

These instructions are to enable the cache counters on a server where you have deployed code, and not installed Enterprise Library explicitly.  This works for 4.1, but did not work with 3.0 a few years ago.

  1. Run InstallUtil against the Common and Caching dlls
    1. %WINDIR%Microsoft.NETFrameworkv2.0.50727InstallUtil Microsoft.Practices.EnterpriseLibrary.Common.dll
    2. %WINDIR%Microsoft.NETFrameworkv2.0.50727InstallUtil Microsoft.Practices.EnterpriseLibrary.Caching.dll
  2. Update the web.config to include the following items:
    1. <configSections><section name=”instrumentationConfiguration” type=”Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.Configuration.InstrumentationConfigurationSection, Microsoft.Practices.EnterpriseLibrary.Common, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35″ /></configSections>
    2. <instrumentationConfiguration performanceCountersEnabled=”true” eventLoggingEnabled=”false” wmiEnabled=”false” applicationInstanceName=”” />
  3. Counters should show up on the server as Enterprise Library Cache Performance Counters
Published
Categorized as performance