6 lines
165 B
Bash
6 lines
165 B
Bash
#!/bin/sh
|
|
echo "add your ip to this file!"
|
|
exit 1
|
|
ifconfig $INTERFACE 10.42.1.10 netmask 255.255.255.255
|
|
route add -net 10.42.0.0 netmask 255.255.0.0 dev $INTERFACE
|