BGP Test Lab – Part 3 – Internal BGP (iBGP) – Three Router Configuration (next-hop-self)

We’ll continue to explore Internal BGP (iBGP) in this next part of our deployment. We are going to be deploying another route in the AS Blue 65001. Remember that eBGP is used between AS and iBGP is used within an AS. Be aware however, that this lab topology is flawed in terms of its configuration, but it shows up … Read more

AWS EC2 Instance SSM Send Command

You can submit commands into an EC2 instance via SSM (Secure Systems Manager), rather than having to open SSH to the machine. From within an authenticated session using AWS CLI on your workstation machine, you can remotely send commands to be run within the instance itself. The commands will typically be run as “root” within … Read more

Microsoft Exchange 2016/2019 Replacing Certificate if Issuer and Subject Same as Old Certificate

Here’s an interesting one I came across today, there exists a problem whereby replacing a certificate on a Microsoft Exchange 2016 or 2019 won’t work if the Issuer and Subject of the new certificate happen to be the same as the old certificate (you are trying to replace). You’d expect most likely that when you … Read more

Expired Microsoft Exchange 2016 Self Signed Certificate

What to do when your self-signed certificate for Microsoft Exchange 2016 expires, Microsoft provide some good guidance about this: https://learn.microsoft.com/en-us/exchange/architecture/client-access/renew-certificates?view=exchserver-2019 You might see errors such as this when you’re trying to administer via PowerShell: You’ll have permissions so the error is a red herring, what is actually happening is you’re attempting to perform an operation … Read more

BGP Test Lab – Part 1 – Introduction and Basic Two Router Configuration

The first part is a basic deployment of BGP between two routers (Router A and Router B) with a single point to point link. In this example, each router is within its own AS (Autonomous System). Therefore any routes exchanged between each AS are eBGP (external BGP) routes. Routes exchanged within an AS are known … Read more

Using SSM COMMAND from Terraform

So you have an EC2 instance you’ve deployed from Terraform, but as part of the run of your template you want to run some other commands. Sure, you can use the “user data” section to run commands at deployment time, but what if you want to run something later on? Well, you can use a … Read more

Microsoft Exchange Server – Certificate Replacement

The time of on-premise Microsoft Exchange servers is beginning to draw to a close, although the Microsoft Exchange Server SE will continue, its feature complete essentially as of Exchange Server 2019, although there may be the odd minor changes here and there. Based on that replacing the certificate is a common task, the following instructions … Read more

Convert the Certificate for Microsoft Windows Server 2016

Microsoft Windows 2016 does not support the newer encryption ciphers used by default by EJBCA (AES256-SHA256), therefore we need to generate a version of the certificate using the earlier encryption cipher type, i.e. TripleDES-SHA1 which is what is supported by the earlier version of Microsoft Windows, namely Server 2016. Check Encryption Ciphers Used Firstly get … Read more