xuxiuxi
2017-03-31 03f65ab5ad75eae6a438a65bcd66ce25a7551d1a
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
 
#crontab:
#*/2 * * * * /bin/sh /opt/auto-net-ip.sh > /dev/null 2>&1
 
HAS_NET=`ifconfig | grep enp1s0 | grep 172.16`
 
if [ -z "$HAS_NET" ]; then
    echo "set ip address"
    ifconfig enp1s0 172.16.23.10/16
    ifconfig enp2s0 192.168.1.100/24
fi