summaryrefslogtreecommitdiff
path: root/templates/interfaces/pseudo-ethernet/node.def
blob: 00e5405508277a613eecee6f010cf869648a0d4d (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 mode $VAR(mode/@) || 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