All public logs

Combined display of all available logs of Dave-Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 14:38, 4 February 2025 Tlyle talk contribs created page Vim Commands (Created page with "== VIM Commands Cheat Sheet == This page provides a comprehensive guide to using VIM, including navigation, editing, searching, and customization. == 1. VIM Modes == VIM operates in different modes: * '''Normal Mode''' - Default mode for navigation and commands (press <code>Esc</code> to enter). * '''Insert Mode''' - Used for typing text (press <code>i</code>, <code>a</code>, <code>o</code>). * '''Visual Mode''' - Used for selecting text (press <code>v</code> or <code...")
  • 14:34, 4 February 2025 Tlyle talk contribs created page Linux Commands (Created page with "== Linux Administration Guide == This page serves as a comprehensive guide to Linux system administration, including essential commands, system management, and upgrade procedures. == Essential Linux Commands == === File and Directory Management === * <code>ls -l</code> - List files with details * <code>cd /path/to/directory</code> - Change directory * <code>mkdir directory_name</code> - Create a new directory * <code>rm -rf file_or_directory</code> - Remove files/dire...")
  • 13:33, 4 February 2025 Tlyle talk contribs created page Route 53 (Created page with "= Amazon Route 53 Deep Dive = Amazon Route 53 is a highly scalable and available **Domain Name System (DNS) web service** designed to provide domain registration, DNS routing, and health checking. It integrates with AWS services to route end users to applications running in AWS and outside. == Key Features of Route 53 == * **Domain Registration** – Purchase and manage domain names directly through AWS. * **DNS Routing** – Use public and private hosted zones to dire...")
  • 14:18, 3 February 2025 Tlyle talk contribs created page AWS Databases (Created page with "== AWS Databases Overview == AWS offers various database services including Amazon RDS, Amazon DynamoDB, and Amazon Aurora. Below are the steps for setting up and using these services. == Setting Up Amazon RDS == 1. **Launch an RDS instance**: To create an RDS instance, use the AWS Management Console, CLI, or API. Example CLI command to create an RDS instance: <pre> aws rds create-db-instance --db-instance-identifier mydbinstance --db-instance-c...")
  • 13:09, 3 February 2025 Tlyle talk contribs created page BGP (Created page with "== Border Gateway Protocol (BGP) Deep Dive == Border Gateway Protocol (BGP) is the **protocol that drives the global internet** and is also widely used in enterprise and cloud networks. It is a **path vector routing protocol** that enables the exchange of routing information between different networks, known as **Autonomous Systems (ASes)**. == Overview of BGP == BGP is classified as an **Exterior Gateway Protocol (EGP)**, meaning it is primarily used to route traffic...")
  • 00:57, 3 February 2025 Tlyle talk contribs created page AWS Hub Spoke (Created page with "'''Hub-Spoke Inspection VPC with Transit Gateway and Palo Alto Firewall''' == Introduction == A Hub-Spoke Inspection VPC architecture is a scalable design for securing network traffic between workload VPCs, on-premises networks, and the internet. This model utilizes AWS Transit Gateway (TGW) for routing, Gateway Load Balancer (GWLB) for traffic inspection, and Palo Alto firewalls for security enforcement. == Architecture Overview == The architecture consists of the fol...")
  • 21:38, 2 February 2025 Tlyle talk contribs created page Wire Shark (Created page with "'''Wireshark Deep Dive''' == Introduction == Wireshark is a powerful open-source network protocol analyzer used for troubleshooting, network analysis, and security auditing. It captures and inspects network traffic in real-time, allowing users to analyze packets in-depth. == Installing Wireshark == Wireshark can be installed on Linux, Windows, and macOS using the following methods: * **Linux:** `sudo apt install wireshark` (Debian-based) or `sudo yum install wireshark`...")
  • 21:33, 2 February 2025 Tlyle talk contribs created page Linux Network Tools (Created page with "'''Linux Network Troubleshooting Tools''' == Introduction == Linux provides a comprehensive set of tools to diagnose and troubleshoot network issues. These tools help in monitoring network traffic, checking connectivity, resolving DNS issues, and debugging network configurations. == Basic Connectivity Tools == === ping === * Used to check the reachability of a host on a network. * It sends ICMP Echo Request packets to the target and waits for an Echo Reply. * Can help...")
  • 04:21, 2 February 2025 Tlyle talk contribs created page EKS (Created page with "= Deep Dive into Amazon EKS Management, Deployment, and Kubernetes CLI Commands = == Introduction == Amazon Elastic Kubernetes Service (EKS) is a managed Kubernetes service that simplifies deployment, scaling, and management of containerized applications in AWS. This guide covers: * EKS cluster setup and management. * Deployment of applications on EKS. * Common Kubernetes CLI commands. * Basic container and pod integration. * Advanced topics: Networking, storage, monito...")
  • 02:16, 2 February 2025 Tlyle talk contribs created page VPC Flow Logs (Created page with "= Setting Up VPC Flow Logs and Using Them for Troubleshooting Network Issues = == Introduction == '''VPC Flow Logs''' capture network traffic metadata in AWS, allowing visibility into IP traffic to and from network interfaces in a VPC. This guide covers: * How to '''set up VPC Flow Logs''' using the AWS Console, CLI, and Terraform. * Best practices for '''storing and analyzing flow logs'''. * How to use flow logs for '''troubleshooting network connectivity issues'''. =...")
  • 01:12, 2 February 2025 Tlyle talk contribs created page AWS Direct Connect (Created page with "= Deploying AWS Direct Connect, Transit Gateway, and Sharing On-Prem Routes = == Introduction == This guide provides step-by-step instructions to set up '''AWS Direct Connect, a Transit Gateway, and share on-premises routes with AWS'''. It covers three deployment methods: * '''AWS Console (Manual Setup)''' * '''AWS CLI''' * '''Terraform (Infrastructure as Code - IaC)''' == Prerequisites == Before proceeding, ensure the following: * You have '''AWS IAM permissions''' to...")
  • 22:20, 1 February 2025 Tlyle talk contribs created page AWS VPN (Created page with "= Deploying a VPN in AWS Peered with a Palo Alto On-Prem Firewall = == Overview == This guide details how to deploy an AWS Site-to-Site VPN and peer it with a Palo Alto on-premises firewall. It includes VPN configuration using **AWS Console, CLI, and Terraform**, along with troubleshooting steps using AWS CLI. == Prerequisites == * **AWS Account** with permissions to create VPNs, VPCs, and Route Tables. * **Palo Alto Networks Firewall** with public IP connectivity. * *...")
  • 22:13, 1 February 2025 Tlyle talk contribs created page AWS AIM (Created page with "= AWS IAM Management = == Overview == AWS Identity and Access Management (IAM) is a service that enables you to securely manage access to AWS services and resources. IAM allows you to create users, groups, and roles and assign permissions using policies. == Best Practices for AWS IAM == === 1. Principle of Least Privilege === * Grant only the permissions necessary for a user or service to perform its tasks. * Regularly review and remove unused permissions. === 2. Use...")
  • 18:38, 1 February 2025 Tlyle talk contribs created page AWS CLI (Created page with "= AWS CLI Commands for Cloud Network Engineers = == 1. VPC Management == === View VPCs === <pre> aws ec2 describe-vpcs </pre> '''Use Case:''' Lists all VPCs in your account. === Create a VPC === <pre> aws ec2 create-vpc --cidr-block 10.0.0.0/16 </pre> '''Use Case:''' Creates a new VPC. === Delete a VPC === <pre> aws ec2 delete-vpc --vpc-id vpc-12345678 </pre> '''Use Case:''' Deletes a VPC. == 2. Subnet Management == === List Subnets === <pre> aws ec2 describe-subne...")
  • 18:22, 31 January 2025 Tlyle talk contribs created page Terraform (Created page with "= Terraform Basics and Best Practices = ''This page covers Terraform fundamentals, best practices, essential commands, and deployment examples for AWS.'' == Introduction == Terraform is an Infrastructure as Code (IaC) tool used to provision, manage, and automate cloud infrastructure. It enables declarative configuration, making infrastructure deployments more reliable and consistent. == Best Practices == === 1. Use Remote Backend for State Management === Terraform sto...")
  • 17:50, 31 January 2025 Tlyle talk contribs created page Thomas-Wiki-Home (Created page with "=Cloud= {| class="buttons" | Terraform |}")