summaryrefslogtreecommitdiff
path: root/templates
AgeCommit message (Collapse)Author
2010-07-21Fix formatting of static-host mapping val helpStephen Hemminger
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-20Use pgrep to count number of matching processesStephen Hemminger
pgrep has simple flag to do what the ps | wc -l was doing.
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-19Convert syslog commands to new CLI help styleStephen Hemminger
2010-07-19Use val_help: features to format betterStephen Hemminger
Previous change did not format val-help tag correctly
2010-07-19Revise static-host-mappingStephen Hemminger
Use ipv4,ipv6 for host mapping address which uses internal CLI syntax check. Revise help text to match CLI standard
2010-07-19Merge branch 'larkspur' of suva.vyatta.com:/git/vyatta-cfg-system into larkspurStephen Hemminger
2010-07-19fix typoAn-Cheng Huang
2010-07-19Convert public-keys help to new formatStephen Hemminger
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-19Fix language in help text for loadkeyStephen Hemminger
2010-07-19Use val_help in zone-policyStephen Hemminger
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-07-06Allow incorrect user to be deletedStephen Hemminger
Avoid password checks on delete. Bug 5418
2010-07-06Change user name validationStephen Hemminger
Do username validation in perl script. This allows for checking for what is allowed, versus what is recommended. For compatiablity we allow things like upper case user names which but this is not recommended so these names produce a warning.
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-05-14Change SNMP community handlingStephen Hemminger
Allow combination of IPv4 and IPv6 address in community setting. Use script to generate necessary community values in snmpd.conf
2010-05-12Allow configuring/restricting SNMP listen addressStephen Hemminger
Add: service snmp listen-address AAAA [port NNN]
2010-05-12Better version of SNMP IPv6 supportStephen Hemminger
Need to use different syntax for community values on IPv6 versus IPv4
2010-05-12Revert "Snmp Ipv6 support"Stephen Hemminger
This reverts commit 5aafb72b269d409500258f0b65f3e635d99712b7.
2010-05-11Snmp Ipv6 supportStephen Hemminger
Simple change to allow ipv6 or ipv4 address in configuration.
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-24Fix Bug 5487 http redirect url address placed on the router gets blocked byMohit Mehta
local-zone's firewall when using Zone Based Firewall * changed local zones INPUT and OUTPUT chain rules to allow all local-zone traffic on the loopback interface rather than using address 127.0.0.1 which was too restrictive and blocked certain traffic initiated from and going to local-zone itself. This is compliant with the Zone Concept and similar to what's done for other transient zones as well where rules are interface based
2010-03-09Bugfix 5021: Make smp_affinity configuration tolerant of failures.Bob Gilligan