Monthly Archives: August 2014

Cisco NAT with route-maps for multiple destinations

object-group network og-rfc1918 10.0.0.0 /8 172.16.0.0 /12 192.168.0.0 /16 ! ip access-list extended acl-nat permit ip object-group og-rfc1918 any ! route-map rm-site-a match ip address acl-nat match interface FastEthernet0/0 ! route-map rm-site-b match ip address acl-nat match interface FastEthernet1/0 ! ip nat inside source route-map rm-site-a interface FastEthernet0/0 overload ip nat inside source route-map rm-site-b… Read More »

Loading

Cisco Multi Homed Internet Config

Found this article from Cisco Forum. Credits to original author. Introduction Network Address Translation is a very common feature used to address some issues and also to meet some networks’ requirements such as, overlapped networks and Internet links. In this small document we will discuss a business requirement example, and the main idea behind this… Read More »

Loading

Synchronize MAC address database between Windows 2012 DHCP Server

In Windows Server 2012, Microsoft added DHCP failover feature. However, this feature will not replicate MAC filter lists (Allow/Deny). Below script is to synchronize DHCP MAC filter database. Link to original post: http://sysadminreference.blogspot.com/2014/02/dhcp-fail-over-service-do-not.html Paste below script in Powershell ISE [code language=”powershell”] $MasterServerHostname = "MasterDHCPFQDN"; # Get the LOCAL filters from localhost $lfilters = Get-DhcpServerv4Filter #… Read More »

Loading