2022/10/13

scp指定 NIC

要單獨取的某 interface 的 ip (v4)
ip -4 addr show enp3s0 | awk '/inet/ {print $2}' | cut -d/ -f1

要指定 scp 使用哪個 interface,就要...
scp -o BindAddress=192.168.145.58 myfile remotehost:~/
如果要在 ip addr 的輸出中篩出來,就要先用 grep 過濾,
grep -A 2 enp3s0: ip-addr-out-file
-A 2 就是show 後面兩行。

沒有留言:

張貼留言