blob: 5b0aaac99290241cc445f2e167daa623facb2906 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
ip link set $VAR(@) up
/opt/vyatta/sbin/vyatta-link-detect $VAR(@) on
delete: ip link delete dev $VAR(@) type macvlan
|