summaryrefslogtreecommitdiff
path: root/templates
AgeCommit message (Collapse)Author
2009-10-20move priority after multi tagsslioch
2009-10-15partial fix for bug 4903.slioch
2009-10-02use pattern instead of execMohit Mehta
2009-09-24Bugfix 4951: Add configuration parameter to blacklist the IPv6 module.Bob Gilligan
2009-09-23Bugfix 4892: Add a config parameter to disable IPv6Bob Gilligan
Added the parameter "system ipv6 disable". If set, the module parameter "disable_ipv6=1" will be passed to the IPv6 module. This inhibits assignment of IPv6 addresses on any interfaces, effectively preventing any IPv6 communication. But it leaves the IPv6 module loaded so that applications that depend upon its existence will not fail.
2009-09-11User group fixesStephen Hemminger
Some changes to group interface: * don't allow vyattaop the new group used for operators * check for allowed syntax * add missing continuation on syntax check
2009-09-09Allow null description on deviceStephen Hemminger
Bug 4918
2009-09-04Enforce syntax checking on passwordStephen Hemminger
Enforce syntax checks on encrypted password field to prevent user errors. But can't check salt field because it is optional and default config.boot doesn't use one! Bug: 4077
2009-09-04Revert "Validate encrypted password field"Stephen Hemminger
This reverts commit a0fe319ce069e15646077a635bc970b961124540.
2009-09-03Validate encrypted password fieldStephen Hemminger
Enforce syntax checks on encrypted password field to prevent user errors. Bug: 4077
2009-08-04Remove slaves before changing modeStephen Hemminger
Since kernel driver does not handle mode changes properly. Workaround by removing slaves (and readding) before changing mode. Bug 4758
2009-08-04Fix bonding group setupStephen Hemminger
The last change broke bond-group setup.
2009-08-04BONDING: handle change of bond-groupStephen Hemminger
Use similar action to new bridge-group Bug 4768
2009-08-04BONDING: handle change of bond-groupStephen Hemminger
Use similar action to new bridge-group Bug 4768
2009-08-04Bonding: load module with MII monitor enabledStephen Hemminger
Unless miimon parameter is set, bonding device won't watch for link changes (which makes it useless for any backup modes).
2009-07-30Bugfix 4700: Move processing to "end" field so that param modifications are ↵Bob Gilligan
handled. In order to correctly handle cases where parameters are changed after a repository configuration has been set up, we need to do the work in an "end" field instead of a "create" field. The "create" field is only executed when the node itself is created, not when nodes below it are modified. (cherry picked from commit e500a9e4494649e0ecb523d36b28452f2e9dd326)
2009-07-17Fix descriptions with meta-charactersStephen Hemminger
Bug 4672 Use ip command rather than sysfs to avoid quoting issues (cherry picked from commit 1b4902564b5a853b925d2c239c8e6a39b1734433)
2009-07-17Allow disable of bonding interface with VIFStephen Hemminger
bug 4694 No reason to block disabling bonding interface with VIF Kernel handles it fine. (cherry picked from commit 3c76bd6b12dd211075d1dd689a2772c534ec7abe)
2009-07-17Block creating vif until after slaves presentStephen Hemminger
Workaround for bonding VLAN_CHALLENGED bug 4694 (cherry picked from commit ca8bff3d63074c52cf9b532eeec3a6a4cfe76722)
2009-07-17Fix 'sh: line 1:' error ing bug 4655.Mark O'Brien
(cherry picked from commit c43e9e86ea502c455dcffac10d50304d47cad8ba)
2009-07-17Added link detect to ethernet bonded vlan interfaces.Mark O'Brien
(bug 4656) (cherry picked from commit a054f90f492653c34d8c1c6443b1b132bc9fbc22)
2009-07-17Change interface state to down, add to bond group, change state to up.Mark O'Brien
(cherry picked from commit ed127b43756dfe852cff453ac8d8a72c01cbefd2)
2009-07-17Make telnet management smarterStephen Hemminger
Bug 4591 Consolidate check for telnet login Don't remove /etc/securetty edit it (cherry picked from commit c6c477f2ffb0f2fd4cf12882f22c2c44ab57cc46)
2009-07-17Convert bonding to use sysfs instead of ifenslaveStephen Hemminger
ifenslave is the old way, and may not be supported in future. Use sysfs instead to add/delete slaves. (cherry picked from commit 0bd1cd12ccb047afce7444f5728fc3bbc3f328a5)
2009-07-17Remove ability to add vif to macvlanStephen Hemminger
Macvlan and vlan tagging doesn't work right in the kernel (2.6.29) so wait till it is fixed upstream. (cherry picked from commit aaed494ef8bbe580da4d378e4844bb0203987d97)
2009-07-17Remove invalid buried templatesStephen Hemminger
These are all templates that do nothing in current config and only contain a useless help: value. (cherry picked from commit d932a2d53618d38a3a5d4c668e18fc5920e0ad6b)
2009-07-17Fix help/completion for xor-hashStephen Hemminger
Bug 4513 (cherry picked from commit 037c5999e70345243ca1a4500a5e247109f54830)
2009-07-17Use sysfs for bonding device controlAn-Cheng Huang
Bug 4511 Since loading bond module is broken in 2.6.29 or later kernel and the root cause is in sysfs/procfs which is a mess. Workaround the problem by loading bond module once and using sysfs. (cherry picked from commit 47f054cb196959bb79960f3b6c1524b4ff7d32a8) Conflicts: templates/interfaces/bonding/node.def
2009-07-17Fix some more update tagStephen Hemminger
A couple more places where update should be replaced with create because multiple values allowed. (cherry picked from commit a6c4d64593bf647e61133ef9d9383428b0ac5807)
2009-07-17Fix multi-nodes for address using update tagStephen Hemminger
Update makes no sense on a multi-valued node, only create or delete have meaning. (cherry picked from commit 273c1418553a39dcb4417acbf70cb863c97d1ccd)
2009-07-14Bugfix 4708: Re-structure to avoid using "update" in non-leaf valueless nodes.Bob Gilligan
This change cleans up the bridging configuration, uses the new COMMIT_ACTION environment variable, and avoids using state files to pass information between templates.
2009-07-14Bugfix 4708: Eliminate use of "update" in non-leaf valueless nodes.Bob Gilligan
2009-07-02Fix Bug 4554 check for existing firewall ruleset fails when applying it to a ↵Mohit Mehta
zone during boot * use isActive to check if firewall ruleset has been succesfully committed * fix templates to fail inside an action field when a command fails
2009-07-01Fix 'sh:1 error' in bug 4655.Mark O'Brien
2009-06-17temporarily undo check for firewall ruleset until bug 4554 is resolvedMohit Mehta
2009-06-14Fix 4579: There is no validation for vrrp virtual-address like the one for ↵Stig Thormodsrud
interfaces address.
2009-06-03change default-policy to default-action for zonesMohit Mehta
2009-06-01Change how system login update worksStephen Hemminger
Use a wrapper script in vyatta_update_login.pl and per login method objects for the update.
2009-06-01Fix deletion of pseudo-ethernetStephen Hemminger
Bug 4478 Incorrect syntax on ip link command.
2009-05-30Merge branch 'jenner' of http://git.vyatta.com/vyatta-cfg-system into jennerStig Thormodsrud
2009-05-30Change tunnel multicast from on/off to enable/disable.Stig Thormodsrud
2009-05-27NTP management version 3Stephen Hemminger
1. Don't start NTP server at boot (network not configed yet) 2. Start NTP as needed based on vyatta config
2009-05-27Revert "Restore default facility for 'syslog console'"Stephen Hemminger
This reverts commit 5a5ca056ba439d2ff3fec19e97fb7111f9fe9819.
2009-05-26Restore default facility for 'syslog console'Stephen Hemminger
Bug 4051 set system syslog console needs to default to: set system syslog console facility all level err
2009-05-25Allow multicast to be enabled on tunnel interfaces.Jon Andersson
2009-05-25Fix 4430: Not possible to create tunnel on fluctating interfacesJon Andersson
2009-05-22Fix ntp.conf managementStephen Hemminger
Had incorrect grep expressions, and don't need to use sudo unless changing values.
2009-05-19Fix Bug 4416 Add the ability to configure a specific server for DynDNSMohit Mehta
2009-05-18Avoid restarting NTP server if not neededStephen Hemminger
On boot if ntp.conf contains proper server, there is no need to restart ntpd.
2009-05-15Don't advertise loopback interface as an allowed value for zone interfacesMohit Mehta
We do not have firewall under 'interface loopback' either