Put this at the end of your .bashrc
function cz { zonefile=$1 zone=$(basename $zonefile .zone) named-checkzone $zone $zonefile }
Then you will be able to use cz to check you zone files.
Example:
cbrown$ cz mpl.com.zone
Put this at the end of your .bashrc
function cz { zonefile=$1 zone=$(basename $zonefile .zone) named-checkzone $zone $zonefile }
Then you will be able to use cz to check you zone files.
Example:
cbrown$ cz mpl.com.zone
This three day course before the MUM will cover MikroTik official certification material plus much more! Real world examples will be shown and demonstrated as part of the class. Each student will obtain a base understanding of MikroTik RouterOS and learn skills that can be applied to there current networks and projects. Course includes labs where you will configure RouterOS and build networks. At the end of the class you will have the chance to take the Official MTCRE and MTCTCE test provided by MikroTik.
Click here for the MTCTCE course outline
Click here for the MTCRE course outline
Ramada Plaza Hotel St. Louis Downtown/At Convention Center
811 N. 9th Street, Washington Ave and N. 9th St, St. Louis, MO 63101 US
The class will be held in the Lafayette metting room.
This three day course will cover MikroTik official certification material plus much more! Real world examples will be shown and demonstrated as part of the class. Each student will obtain a base understanding of MikroTik RouterOS and learn skills that can be applied to there current networks and projects. Course includes labs where you will configure RouterOS and build networks. At the end of the class you will have the chance to take the Official MTCNA test provided by MikroTik.
Click here for the course outline
Laptop with at least 1 ethernet port
Power Strip approximately 10′ in length
Two ethernet cables 6′-14′ in length
Just 4 hours from Washington, DC in Buckhannon, WV.
MPL Corporation
768 Brushy Frok Rd
Buckhannon, West Virginia 26201
1-304-472-9520
I recently had to replace the inner tie rod on my wife’s 2005 Escape. After doing a little research for an inner tie rod tool I found one that had very good reviews and was suppose to work with MOST Ford vehicles. I guess the 05 Escape doesn’t fall into most. The crowsfeet on the tool are made to fit on an inner tie rod that has two flat sides, the tie rod in the Escape was completely round and smooth.
This three day course will cover MikroTik official certification material plus much more! Real world examples will be shown and demonstrated as part of the class. Each student will obtain a base understanding of MikroTik RouterOS and learn skills that can be applied to there current networks and projects. Course includes labs where you will configure RouterOS and build networks. At the end of the class you will have the chance to take the Official MTCNA test provided by MikroTik.
Click here for the course outline
Laptop with at least 1 ethernet port
Power Strip approximately 10′ in length
Two ethernet cables 6′-14′ in length
Country Inn & Suites
105 Alex Lane – Charleston, West Virginia 25304
1-800-830-5222
Room rate : $95 (per night)
Website: http://www.countryinns.com/charleston-hotel-wv-25304/wvcharle/
To get the group rate, call the hotel and tell them you are with the MikroTik group.
I came across a handy little application called DiffMerge that allows you to compare multiple files and make changes while open. This is extremely useful when comparing multiple MikroTik configuration files. Previously I used sdiff, but I think this is much easier to use.
DiffMerge is a free application and can be used on OSX, Windows, and Linux. The download can be found here.
http://www.sourcegear.com/diffmerge/
Sometimes working with a directory full of subdirectories and files you need to compare the directories and files to another version of the files. This comes in extremely useful when restoring a hacked website. To do this you need to have the old copy and the current copy in two different directories on your system. Then run the command below replacing DIR1 and DIR2 with the directoires you would like to compare. This works through the entire directory because of the -r option which stand for recursive. The -q option suppresses the entire output and only outputs the files the differ.
After setting up your website it is always a good idea to change the directory and file permissions. This makes it a little harder for an attacker to compromise your site. For Joomla and WordPress it is best practice to set your directory permissions to 755 and your file permissions to 644. In addition to this, WordPress recommends setting the wp-config.php file to 600.
Using the code below, go to the root directory of your website and run the following commands.
find . -type f -exec chmod 644 {} \; find . -type d -exec chmod 755 {} \;
This is my first setup with 3G on a Routerboard. It took a little longer than I wanted to figure everything out, but I eventually got it working.
The steps that made it work.