login

ospf distribute lists

April 1, 2012, 7:03 p.m. by JP Senior

Many network engineers get confused when a distribute-list configured in OSPF doesn't behave as well as it does in another protocol such as RIP or EIGRP. 

wordpress multi site rewrite iis

March 30, 2012, 9:44 p.m. by JP Senior

  • Test
  • one
  • twot
  • thoree 

no

  • yes 

Tag clouds!

March 29, 2012, 2:12 a.m. by JP Senior

This seems to be the thing the blog engines are doing. We've got tag clouds now.

Open VPN, quagga-ospfd, and hulu

March 28, 2012, 11:43 p.m. by JP Senior

Just some config so I don't forget. :) Install OpenVPN, libcap, libcrypto, liblzo2, and libdl.

I'm using the tap interface specifically so I can allow OpenVPN to set the netmask of the interface and permit multicast to travel over the link for OSPF.

OpenVPN server.txt

tls-server
dev tap
ifconfig 172.16.255.1 255.255.255.0
verb 3
ca ca.crt
cert server.crt
key server.key
dh dh1024.pem

Openvpn client.txt

tls-client
remote 108.166.91.132
dev tap
ifconfig 172.16.255.2 255.255.255.0
verb 3
ca ca.crt
cert home ...

gawker password checks

Dec. 14, 2010, 10:24 p.m. by JP Senior

Hi reddit! This isn't a real blog, more like a code experiment for some personal growth. I'm not a web dev or anything but I had enough juice in me to create something to help you. Please don't hammer my site.. It's running on some older hardware.

check your password against DES crypt

The python code for the web app is here:

pvlan diagram for void64

Oct. 29, 2010, 1:34 p.m. by JP Senior

Alt text

CCIE Security diagram

Oct. 29, 2010, 11:07 a.m. by JP Senior

Just a quick diagram for some fun stuff I'm working on.

CCIE Security diagram

SOUTH Migrations made easy

Oct. 25, 2010, 11:42 p.m. by JP Senior

Before:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
class Publisher(models.Model):
    name = models.CharField(max_length=30)
    address = models.CharField(max_length=50)
    city = models.CharField(max_length=60)
    state_province = models.CharField(max_length=30)
    country = models.CharField(max_length=50)
    website = models.URLField(blank=True, null=True)
    rating = models.CharField(max_length=5)
    cost = models.CharField(max_length=5, blank=True, null=True)

    def __unicode__(self):
            return self.name

After:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
class Publisher(models.Model):
    name = models.CharField(max_length=30)
    address = models.CharField(max_length=50)
    city = models ...

Code syntax highlighting

Oct. 25, 2010, 5:10 p.m. by JP Senior

I spent a while surfing the net looking for help with allowing markup and code highlighting to play well together - turns out it's not very difficult at all. Enjoy some sample code and a tutorial for a very simple blog engine (Untested for now).

Markdown documentation

Oct. 25, 2010, 4:28 p.m. by JP Senior

Quick reference on all of the django markdown documentation.

second blog title

Oct. 23, 2010, 5:32 p.m. by JP Senior

I only have a body variable here.

Testing the blog engine

Oct. 23, 2010, 4:25 p.m. by JP Senior

and this is the summary of text stuff.