mirror of
https://github.com/NeoCloud/NeoNetwork
synced 2024-11-05 22:22:24 +08:00
11 lines
162 B
Bash
11 lines
162 B
Bash
#!/bin/sh
|
|
|
|
case `uname` in
|
|
Linux)
|
|
ip link set $INTERFACE up
|
|
ip addr add 10.127.x.x/x dev $INTERFACE
|
|
;;
|
|
*BSD)
|
|
ifconfig $INTERFACE 10.127.x.x/x
|
|
;;
|
|
esac
|