Skip to content
View PhilipSchmid's full-sized avatar
Block or Report

Block or report PhilipSchmid

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. cilium/cilium cilium/cilium Public

    eBPF-based Networking, Security, and Observability

    Go 18.6k 2.7k

  2. cilium-netpol-demo cilium-netpol-demo Public

    Demo of (Advanced) Cilium Network Policies

    Shell 2 1

  3. Useful (non-daily) Bash commands and... Useful (non-daily) Bash commands and sources
    1
    # General Commands
    2
    *Delete history and exit bash*
    3
    ```bash
    4
    cat /dev/null > ~/.bash_history && history -c && exit
    5
    ```
  4. k8s-home-lab k8s-home-lab Public

    Setup for a K8s home lab running on a single host (e.g. Intel NUC)

    137 19

  5. Ubuntu 18.04 LACP Network Interface ... Ubuntu 18.04 LACP Network Interface Bonding
    1
    # Interface bonding
    2
    Configure a LACP active network interface bonding on Ubuntu 18.04 using `netplan`:
    3
    
                  
    4
    ```yml
    5
    root@srv01:~# mv /etc/netplan/50-cloud-init.yaml /etc/netplan/01-netcfg.yaml
  6. Testing Multicast Traffic on Linux Testing Multicast Traffic on Linux
    1
    # Testing Multicast Traffic on Linux
    2
    
                  
    3
    ## Prerequisites
    4
    By default Linux ignores Broadcast and Multicast ICMP messages. That's why you need to enable it first:
    5
    ```bash