Yearly Archives: 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

XRDP

Install xrdp apt-get install xrdp Configure xrdp GNOME apt-get install gnome-session-fallback echo gnome-session –session=gnome-fallback > ~/.xsession Xfce (xubuntu) echo xfce4-session > ~/.xsession LXDE (lubuntu) echo lxsession -s Lubuntu -e LXDE > ~/.xsession Incoming search terms:192 168 88 1/userman

Loading

OpenWRT Adblock with Pixelserv

There’re many ways of doing this. The scenario and configuration is flexible enough, depending on what you want to achieve. The easy way Others have recently developed packages for this same functionality, and done it better than anything I could do. Use the packages instead of this script: Gargoyle package by @lantis1008 OpenWRT package by… Read More »

Loading