BGP Test Lab – Part 10 – Internal BGP (iBGP) – Multiple Router Configuration (Confederations)

A BGP Confederation, is like Route Reflectors another technique to remove the need for the “full-mesh” requirement of iBGP, where such a requirement is prohibitive, due to the size of the network. Remember that with an iBGP AS network, each Router must have a BGP Neighbour (peering) with every other for the AS to operate correctly, sure this … Read more

BGP Test Lab – Part 9 – Internal BGP (iBGP) – Three Router Configuration (Route Reflector, RR)

We’re now going to investigate Route Reflectors and how and when they can be used. Route Reflectors are for use within iBGP only, they are never used for eBGP. A Route Reflector (RR) is: An iBGP router, that is specifically allowed to re-advertise iBGP-learned routes to other iBGP peers (within the AS), and is designed to remove the iBGP full-mesh requirement (amongst other things). If you … Read more

BGP Test Lab – Part 8 – Path Selection: BGP Communities

In this article, we’re going to examine another mechanism of BGP, BGP Communities. These like MED are used to change/influence/direct how traffic will flow between different AS. Its just another mechanism like MED you could use, but has some advantages when compared to MED, namely it can be much more dictatorial rather than influencial and … Read more

Putty Logging

You can setup Putty to just log everything by adding logging to your Default Settings, that way whenever you connect, you’ll always be logging what the outputs are to your chosen location, e.g. your local machine. Although be aware of any sensitive on-screen information that would also be logged to these files. Your path may … Read more

Exim – Address Re-Write (Flattening Sub-Domain)

We had an interesting issue where our EXIM configuration was flattening a subdomain’s “From” address, i.e. it was re-writing an email’s From (HFrom) and MailFrom (return-path/envelope-from) headers to @domain.com addresses, i.e. to catch emails such as root@mymachine.domain.comand re-write the From (HFrom) and MailFrom (return-path/envelope-from) to root@domain.com instead. Problem was, this configuration wasn’t documented, so needed a bit of investigation; but is also a good learning point … Read more