This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/awk -f | |
# | |
# Author: Matt Pascoe - [email protected] | |
# | |
# This awk script is used to extract relevant information from a bind zone | |
# file and build the appropriate fields for passing into | |
# a dcm.pl module. This can be used to bootstrap a new database from existing | |
# site data. | |
# | |
# You can simply cat a file and pipe it to this script |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Rancor Monster: ($100) | |
- Loose in box, NO paperwork, original outer box | |
- Ewok Village: ($120) | |
- Complete parts, instruction sheet, loose NO BOX | |
- Micro Collection Bespin Freeze Chamber: ($80) | |
- Complete parts, instruction sheet, original outer box | |
- Patrol Dewback: ($110) | |
- Figure, Saddle, special eddition original outer box, harness is broken, no documentation | |
- AST-5 Vehicle: ($60) | |
- Vehicle, instruction and sticker sheet, original outer box |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
# TODO: make command line options possible use $endline as selector | |
###$endline=true; | |
# TODO: allow a comment character in the mode that prints at the end of a line. user passable comment character. | |
# TODO: make it work with ipv6.. for now its ipv4 only | |
use Socket; | |
my %dnscache; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
# | |
# Update the path to your lease file below | |
use strict; | |
use File::Copy; | |
#use DateTime; | |
#always parse a copy not the live file | |
#my $leasefile = '/var/lib/dhcpd/dhcpd.leases'; | |
my $leasefile = '/var/lib/dhcp/db/dhcpd.leases'; |

This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/awk -f | |
# | |
# Author: Matt Pascoe - [email protected] | |
# | |
# This awk script is used to extract relavant information from a dhcpd.conf | |
# config file and build dcm.pl output with appropriate fields. This can be | |
# used to bootstrap a new database from existing site data. | |
# As usual, inspect the output for accuracy. | |
# Also you will get three types of output, subnet,pool,host. You must | |
# add the subnet information first, then pool, then host. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Author: Matt Pascoe - [email protected] | |
# | |
# usage: ./parseshowroute.sh <filename> | |
# | |
# Takes the output of a "show ip route" command from an IOS device | |
# and processes it. Simply get the output and save it to a file | |
# and then run this script against that file. | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/awk -f | |
# | |
# Author: Matt Pascoe - [email protected] | |
# | |
# This awk script is used to extract relevant information from a tinydns data | |
# config file and build a csv with appropriate fields for passing into | |
# a dcm.pl module. This can be used to bootstrap a new database from existing | |
# site data. | |
# | |
# This script assumes the data to be reasonably correct as it is expected that |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Main class can be found here: | |
* https://www.phpclasses.org/package/6621-PHP-Send-queries-to-a-DHCP-server.html | |
* | |
* A simple test script to demonstrate how to use the dhcpLeaseQuery class. | |
* Please read the note below first then edit the variables below as appropriate. | |
* Then simply run: php LeaseQuery.php | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class opennetadmin::dcm inherits opennetadmin { | |
case $operatingsystem { | |
Debian,Ubuntu: { | |
package { | |
'libio-socket-ssl-perl': | |
ensure => present, | |
before => File['dcm.pl'], | |
} | |
} |
NewerOlder