mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
6 lines
123 B
Bash
6 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
|