summaryrefslogtreecommitdiff
path: root/templates/interfaces/pseudo-ethernet/node.def
diff options
context:
space:
mode:
authorJohn Southworth <john.southworth@vyatta.com>2011-08-15 13:30:17 -0500
committerJohn Southworth <john.southworth@vyatta.com>2011-08-15 13:30:17 -0500
commit36300ab43d8aa33506ea1ce30fc32dd25dbeb7e7 (patch)
tree8fab386c84c3bf9ba51b96f9395af7b8dff1d417 /templates/interfaces/pseudo-ethernet/node.def
parentd1d15b68a50d9374dfe763e130887f2a0372bf66 (diff)
parent80a97b5e4ce2530db696e3cb294d35d9678934b7 (diff)
downloadvyatta-cfg-system-36300ab43d8aa33506ea1ce30fc32dd25dbeb7e7.tar.gz
vyatta-cfg-system-36300ab43d8aa33506ea1ce30fc32dd25dbeb7e7.zip
Merge branch 'oxnard' of git.vyatta.com:/git/vyatta-cfg-system into oxnard
Diffstat (limited to 'templates/interfaces/pseudo-ethernet/node.def')
-rw-r--r--templates/interfaces/pseudo-ethernet/node.def7
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/interfaces/pseudo-ethernet/node.def b/templates/interfaces/pseudo-ethernet/node.def
index 5b0aaac9..4f8510f3 100644
--- a/templates/interfaces/pseudo-ethernet/node.def
+++ b/templates/interfaces/pseudo-ethernet/node.def
@@ -6,9 +6,14 @@ 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
+ 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