Category Archives: How To - Page 8

How To Enable Ping In Windows Server 2016 Firewall

How To Enable Ping In Windows Server 2016

By default in Windows Server 2016 the Windows Firewall is configured to drop all inbound ICMP traffic. This includes echo requests which are common from ping, which can make network troubleshooting difficult.

Here we cover how to allow ping through Windows Firewall.

Read more »

How To Log Out Of Windows Server 2016

How To Log Out Of Windows Server 2016

The new Windows 10 style interface that has made its way into Windows Server 2016 has left some late adopters a little confused, here we’ll cover how you can easily log off.

Read more »

How To Enable Remote Desktop In Windows Server 2016

How To Enable Remote Desktop Protocol (RDP) In Windows Server 2016

By default in Windows Server 2016 remote desktop is disabled.

Here we cover how to turn on and enable remote desktop protocol (RDP).

Read more »

How To Zip/Unzip Files In Windows With PowerShell

How To Zip/Unzip Files With PowerShell In Windows Server 2016

Prior to Windows Server 2016 there wasn’t really an easy built-in way of compressing files into a .zip archive by command line without custom scripts or tools, until now.

Here we take a look at some new cmdlets available in PowerShell 5.0 to allow us to archive contents into .zip files.

Read more »

How To Clear The SSSD Cache In Linux

SSSD

The System Security Services Daemon (SSSD) provides access to identity and authentication providers. Basically rather than relying on locally configured authentication, SSSD is used to lookup its local cache. The entries within this cache may come from different remote identity providers, such as an LDAP directory, FreeIPA, or Active Directory for example.

SSSD caches the results of users and credentials from these remote locations so that if the identity provider goes offline, the user credentials are still available and users can still login. This helps to improve performance and facilitates scalability with a single user that can login over many systems, rather than using local accounts everywhere.

The cached results can potentially be problematic if the stored records become stale and are no longer in sync with the identity provider, so it is important to know how to flush the SSSD cache to fix various problems and update the cache.

Here we’ll cover a couple of different methods to flush out the SSSD cache.

Read more »

How To Use Firewalld Rich Rules And Zones For Filtering And NAT

Use Firewalld Rich Rules And Zones For Filtering And NAT

Here we cover the RHCE exam objective “Use firewalld and associated mechanisms such as rich rules, zones and custom rules, to implement packet filtering and configure network address translation (NAT)” in Red Hat Enterprise Linux (RHEL) 7.

Read more »

Configure Additional Options Described In Documentation For SSH In Linux

Configure Additional Options Described In Documentation For SSH In Linux

Here we are going to take a look at some of the options available to us when configuring OpenSSH server and discuss what they actually do, as per the RHCE objective.

Read more »

How To Change Log Rate Limiting In Linux

How To Change Log Rate Limiting In Linux

By default in Linux there are a few different mechanisms in place that may rate limit logging. These are primarily the systemd journal and rsyslog rate limits that are in place by default.

Here we cover modifying or removing rate limiting for logging.

Read more »

How To Configure An iSCSI Target And Initiator In Linux

How To Configure iSCSI Target And Initiator In Linux

With an iSCSI target we can provide access to disk storage on a server over the network to a client iSCSI initiator. The iSCSI initiator will then be able to use the storage from the iSCSI target server as if it were a local disk.

Here we cover how you can set up both an iSCSI target and an iSCSI initiator in Linux and connect them together.

Read more »

How To Configure Local DNS Query Cache In Linux With Dnsmasq

How To Configure Local DNS Query Caching In Linux With Dnsmasq

In many Linux based distributions there does not appear to be any local DNS query caching performed by default on the client side like there is in Windows. This means that if a process on the system constantly needs to connect to some domain name it will perform a DNS lookup against the resolver defined to retrieve the IP every single time.

In this particular example instance there is a process that performs 30,000,000 DNS requests per day on average against the nameserver, we are going to significantly reduce this by configuring a local DNS cache on the server performing the excessive DNS queries.

Read more »