aboutsummaryrefslogtreecommitdiff
path: root/examples/var_service/zcip_if/convert2ipconf
blob: aa133d8153d90fa098426634f4e29c6184d50856 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
# convert:

#interface=eth1
#ip=169.254.x.y

#let cfg=cfg+1
#if[$cfg]=...; ip[$cfg]=...; ipmask[$cfg]=.../...; gw[$cfg]=...; net[$cfg]=... dns[$cfg]=...

exec >/dev/null
#exec >"$0.out"  # debug
exec 2>&1

test "$interface" || exit 1
test "$ip" || exit 1

{
echo "let cfg=cfg+1"
test "$interface"	&& echo "if[\$cfg]='$interface'"
test "$ip"		&& echo "ip[\$cfg]='$ip'"
test "$ip"		&& echo "ipmask[\$cfg]='$ip/16'"
} >"$1"