|
You are here |
sam.hooke.me | ||
| | | | |
willhaley.com
|
|
| | | | | For all of these options first install macchanger. sudo DEBIAN_FRONTEND=noninteractive apt install macchanger Random MAC for every NIC Create a file at /etc/udev/rules.d/81-mac-spoof.rules like so. ACTION=="add", SUBSYSTEM=="net", RUN+="/usr/bin/macchanger -r $name" Random MAC for a specific NIC If the original MAC address of the NIC was dc:a6:32:d0:7b:de then create a file at /etc/udev/rules.d/81-mac-spoof.rules like so. ACTION=="add", SUBSYSTEM=="net", ATTR{address}=="dc:a6:32:d0:7b:de", RUN+="/usr/bin/macchanger -r $name" Notes https://wiki.archlinux.org/title/MAC_address_spoofing | |
| | | | |
blog.kummerlaender.eu
|
|
| | | | | Adrian Kummerländer's blog on software development, linux and open source | |
| | | | |
virtualzone.de
|
|
| | | | | I'm running my containers with Podman in Rootless Mode on Alpine for about four months now. However, an annoying problem has haunted me ever since: When a container was connected to more than one network, outgoing connections were not working correctly. Consider a container connected to two bridge networks: $ podman run --rm -it \ --network net1 \ --network net2 \ alpine /bin/ash Inside the container, the two networks are connected correctly: | |
| | | | |
blog.self.li
|
|
| | | Raspberry Pi 2: Basic setup without any cables (headless) Today I want to show you how to set up a headless Raspberry Pi 2 without any extra cables (HDMI or ethernet), screens, keyboards etc. You... | ||