Filtering OSPF Routes Part 1

Filtering routes is a little more complicated when we are talking about OSPF. In EIGRP it was simple. Since EIGRP is an advanced distance vector routing protocol, each router doesn't have a perfect picture of the routing domain, it just has an idea of what's behind our neighbor. OSPF is of course different. Each OSPF area …

Microsoft AD DNS – How to force Google Safe Search

Forcing safe-search for Google is very simple, and pretty hard to turn off. Couple it together with filtering DNS queries and you've got yourself a pretty robust content filter. First I'm going to show you the powershell way (run powershell as admin), then I will show you the GUI way.   add-dnsserverprimaryzone -ReplicationScope Forest -Name …

EIGRP Questions to Prepare you for the CCNP!

In my CCNP notes I usually have some questions about each topic to help me solidify the material (along with labs). Here are some EIGRP questions I would recommend trying to answer. If I were you, I would memorize these questions/answers. I promise they will help! Questions: What is the administrative distance of internal EIGRP? …

Basic EIGRP Manual Summarization and Null0

EIGRP Summarization is used to simplify our routing table and advertise a summary instead of a bunch of prefixes that look the same.     My current network topology is simple, I've basically configured EIGRP, then used the "network 0.0.0.0" command to advertise everything and form neighbors. Here is what my routing table looks like …

Moving DHCP from Server to Server with Powershell

My scenario: I needed to move DHCP from server 2012 to server 2012 R2 with leases. I wanted to do this quickly and safely. You can run all of these commands from your new DHCP server: Install DHCP + MGMT tools on the new server. Install-windowsfeature DHCP -includemanagementtools Authorize the new server Add-DhcpServerInDC Backup the …