master-thesis/bin/set_ipv4_neighbor.sh

12 lines
200 B
Bash
Raw Normal View History

2019-07-28 14:16:43 +00:00
#!/bin/sh
# eth1 / nsg
remote_mac=f8:f2:1e:41:44:9c
set -x
for addr in $(seq 1 64); do
hwaddr=$(printf "%0.2d" $addr)
sudo ip neighbor add 10.0.0.$addr lladdr $remote_mac dev enp2s0f0
done