blob: a9113e7afcbc6a862af72f515d93da87fe1abaeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
tag:
priority: 318
type: txt
help: Ethernet interface name
allowed: /opt/vyatta/sbin/vyatta-interfaces.pl --show=ethernet
val_help: <ethN>; Ethernet interface name
syntax:expression: pattern $VAR(@) "^eth[0-9]+$" \
; "interface ethernet $VAR(@): not a valid name"
syntax:expression: exec \
"if [ ! -d /sys/class/net/$VAR(@) ]; then \
echo \"interface ethernet $VAR(@): does not exist\";
exit 1; \
fi"
begin: rm -f /tmp/speed-duplex.$VAR(@)
if [ -d "/sys/class/net/$VAR(@)" ]; then
s_mac="$VAR(hw-id/@)"
if [ -n "$VAR(mac/@)" ]; then
s_mac="$VAR(mac/@)"
fi
if [ -n "$s_mac" ]; then
/opt/vyatta/sbin/vyatta-interfaces.pl --dev $VAR(@) \
--set-mac $s_mac
fi
fi
create: ip link set "$VAR(@)" up
/opt/vyatta/sbin/vyatta-link-detect $VAR(@) on
delete: [ -d /sys/class/net/$VAR(../@) ] || exit 0
ip link set $VAR(@) down
end: rm -f /tmp/speed-duplex.$VAR(@)
|