blob: 4f8510f37b4087fdf5e2752e41aae66edc088725 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
tag:
priority: 319 # same as vif
type: txt
help: Pseudo Ethernet device name
val_help: <pethN>; Pseudo Ethernet interface name
syntax:expression: pattern $VAR(@) "^peth[0-9]+$" \
; "name must be (peth0-peth999)"
commit:expression: $VAR(link) != ""
; "link device must be set for virtual ethernet $VAR(@)"
create: ip link add $VAR(@) link $VAR(link/@) type macvlan || exit 1
if ! cli-shell-api exists interfaces ethernet $VAR(@) disable;
then ip link set $VAR(@) up
fi
/opt/vyatta/sbin/vyatta-link-detect $VAR(@) on
delete: ip link delete dev $VAR(@) type macvlan
|