mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Move contents into new folder structure based on primary technology Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
5 lines
123 B
Bash
5 lines
123 B
Bash
#!/bin/bash
|
|
|
|
# Provision secondary network interface
|
|
sudo ip addr add 192.168.100.101/24 dev eth1
|
|
sudo ip link set eth1 up
|