diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2012-01-19 19:04:24 -0800 |
---|---|---|
committer | Stephen Hemminger <shemminger@vyatta.com> | 2012-01-19 19:04:24 -0800 |
commit | 501a4c7fd2ce8af909e553894ee3f1956e29a91c (patch) | |
tree | dd935ae13dc3ae2c34c5a168d09981d22879c2a4 /templates/interfaces/tunnel | |
parent | fdf34bda65a33229f780a229a05fd300ff1250c5 (diff) | |
download | vyatta-cfg-system-501a4c7fd2ce8af909e553894ee3f1956e29a91c.tar.gz vyatta-cfg-system-501a4c7fd2ce8af909e553894ee3f1956e29a91c.zip |
Enforce length restriction on interface description
Bug 7730
Kernel limit on interface description (ifalias) is 256 characters.
Diffstat (limited to 'templates/interfaces/tunnel')
-rw-r--r-- | templates/interfaces/tunnel/node.tag/description/node.def | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/interfaces/tunnel/node.tag/description/node.def b/templates/interfaces/tunnel/node.tag/description/node.def index e4807d2f..c6d2789d 100644 --- a/templates/interfaces/tunnel/node.tag/description/node.def +++ b/templates/interfaces/tunnel/node.tag/description/node.def @@ -1,4 +1,8 @@ type: txt help: Description + +syntax:expression: pattern $VAR(@) "^.{1,256}$" \ + ; "interface description is too long (limit 256 characters)" + update: sudo sh -c "echo \"$VAR(@)\" >/sys/class/net/$VAR(../@)/ifalias" delete: sudo sh -c "echo '' >/sys/class/net/$VAR(../@)/ifalias" |