summaryrefslogtreecommitdiff
path: root/templates/interfaces
AgeCommit message (Collapse)Author
2010-08-17update help text to use val_helpAn-Cheng Huang
2010-07-28Fix typo in last changeStephen Hemminger
(cherry picked from commit ce148b04d59fad50a26c394e4a59e252ea565e96)
2010-07-28Change ranges for bridge parametersStephen Hemminger
Bug 5901 (cherry picked from commit 47014cdc10a429725d1620fc5326fd9995469c09)
2010-07-21Move input interface over to Qos packageStephen Hemminger
The input interface needs to be in QoS package since the delete action needs to refer to scripts in QoS package.
2010-07-21Add completion for text fields with limited valuesStephen Hemminger
For all nodes that do 'syntax:expression: $VAR(@) in' add allowed tag to show possible values
2010-07-21Fix help completion textStephen Hemminger
Use ipv4net when Address/prefix expected Use ipv4 where Address expected
2010-07-20Add proxy-arp over bondingStephen Hemminger
Bug 5674
2010-07-20Use expression to validate VRRP passwordStephen Hemminger
Use CLI regex to check VRRP password rather than having to escape out to shell.
2010-07-20Use val_help: for interface name helpStephen Hemminger
Use common method for formatting CLI style help when entering interface name. Move loopback name syntax check into CLI expression to avoid overhead of perl here.
2010-07-19Merge branch 'larkspur' of suva.vyatta.com:/git/vyatta-cfg-system into larkspurStephen Hemminger
2010-07-19Convert VRRP to new CLI help styleStephen Hemminger
Use val_help: for help strings
2010-07-19Convert VRRP preempt to boolStephen Hemminger
This value can only be "true" or "false"; it should be bool type.
2010-07-19fix typo, val_help, etc.An-Cheng Huang
2010-07-19Use val_help: features to format betterStephen Hemminger
Previous change did not format val-help tag correctly
2010-07-19Convert tunnel parameters to new help formatStephen Hemminger
2010-07-19Loopback address node cleanupStephen Hemminger
Use ipv4net,ipv6net to handle the two address possibilities
2010-07-19bonding vif val_helpStephen Hemminger
2010-07-19Use val_help: for Ethernet interface parametersStephen Hemminger
More consistency fixes.
2010-07-19Bridge parameter node updateStephen Hemminger
Do syntax range checking on bridge STP parameters. Note: kernel allows much bigger values (and IOS checking is more strict).
2010-07-19Use val_help: for interface MTU nodesStephen Hemminger
2010-07-19Covert bonding mode to val_helpStephen Hemminger
2010-07-16Remove verbs from all help messagesStephen Hemminger
Per current policy remove verb from all help messages in th is package
2010-07-16Use val_help: for address nodesStephen Hemminger
Use common format for address nodes
2010-07-16Add syntax validation for bridge STP parametersStephen Hemminger
The syntax range for bridge STP values was missing or incorrect. Bug 5864
2010-06-18Remove sudo from tunnel commandStephen Hemminger
Don't need sudo for ip command anymore.
2010-06-17initial support for gre-bridge tunnels.Robert Bays
2010-06-15Remove sudo from brctlStephen Hemminger
Since brctl has cap_net_admin, don't need to use sudo
2010-06-15Remove unnecessary :expression: syntaxStephen Hemminger
Several templates can use simplified non-expression syntax
2010-06-15Remove sudo from ip commandStephen Hemminger
No longer need sudo on ip because of cap_net_admin
2010-05-26Move DHCPv6 client configuration to this package and restructre parameters.Bob Gilligan
2010-05-19Add enable-proxy-arp to vif interface.Stig Thormodsrud
2010-04-27Make interface help completion strings consistentStephen Hemminger
Use same format/syntax over all interface types. Bug 5257
2010-04-16Configure IFB devices earlier in bootStephen Hemminger
Need ifb device to be created before other devices redirect to it.
2010-04-15Rename in0 to ifb0Stephen Hemminger
More descriptive name for input interface.
2010-04-06Add input pseudo-interface configurationStephen Hemminger
This is configuration wrapper for IFB. See spec.
2010-03-29Fix test for UPStephen Hemminger
/sys/devices/system/cpu/present is 0-NN on SMP and 0 on UP.
2010-03-29Ignore setting CPU affinity on UP systemsStephen Hemminger
If only one CPU, then not worth bothering doing any kind of interrrupt affinity.
2010-03-09Bugfix 5021: Make smp_affinity configuration tolerant of failures.Bob Gilligan
2010-03-09Set primary interface after bond-group is initializedStephen Hemminger
Bug 4977 Need to wait to set/check bond primary device until after it is put in bond group.
2010-02-21Fix 5157: dhcpclient doesn't work when alternative mac address specified on ↵Stig Thormodsrud
bootup
2010-02-18Fix Bug 5064 can't delete bridge group and membership in one commitMohit Mehta
* fix this for eth, eth.vif, bond, bond.vif interfaces * also, bridge-group code for bonding interfaces wasn't changed with commit ec080f99 that re-strucutred bridging code in eth and eth.vifs to fix bug 4708. bridge-group code for bond and bond.vif interfaces is now similar to the fix for 4708
2010-02-16Use template to do syntax checks on ethernet device nameStephen Hemminger
Bug 5256 Going out to perl to repeatedly validate ethernet device name slows down adding VLAN's and other operations with lots of sub-devices.
2010-02-16Check current status (not configured value) when enabling vlan deviceStephen Hemminger
2010-02-16Speed up VIF creationStephen Hemminger
The overhead of compiling perl script repeatedly slows down VIF creation
2010-01-19Bugfix 5162: Make disabling flow control work at boot time.Bob Gilligan
We need to delay disabling flow control in the sequence of events until after the interface address has been set. An additional benefit of adding a "priority" field is that interface configuration will not fail if the attempt to disable flow control fails for some reason.
2010-01-04Do loopback before other interfacesStephen Hemminger
Want to process loopback first, so any local addresses assigned to loopback are done.
2009-12-21Move interface support from vyatta-cfg to vyatta-cfg-systemStephen Hemminger
All the other interface types are in vyatta-cfg-system, only loopback and ethernet were in vyatta-cfg
2009-11-30added required keyword to help text.Michael Larson
2009-11-02Fix 5063: committing "set interfaces ethernet <> bridge-group bridge <>" ↵Stig Thormodsrud
got "invalid variable reference (invalid format)" - need extra escape magic to call vyatta-cli-expand-var.pl.
2009-11-01Add priority for bonding vrrp nodes.Stig Thormodsrud