summaryrefslogtreecommitdiff
path: root/templates
AgeCommit message (Collapse)Author
2011-03-15match console type only once.Robert Bays
2011-03-15updated fix for bug 6919: Console settings don't support hvc0 for xenRobert Bays
2011-03-15fix for bug 6919: Console settings don't support hvc0 for xenRobert Bays
2011-03-11Remove flag file at end of transactionStephen Hemminger
If commit cleans up temp file, no sudo is necessary.
2011-03-11Don't set speed duplex twiceStephen Hemminger
Bug 6778 Both the nodes for speed and duplex both update the device. But only the change only needs to be done once. Changing the values twice causes link bounce and takes some time to resolve.
2011-03-03Bugfix 5491: Allow tunnel parameters to be changed on a preconfigured tunnelJohn Southworth
2011-02-25Validate domain and host nameStephen Hemminger
Bug 6243 More complete validation of host name and domain name
2011-02-07Merge branch 'napa' of git.vyatta.com:/git/vyatta-cfg-system into napaJohn Southworth
2011-02-07Fix syslog not reloading properly after changing the log levelJohn Southworth
Bugfix 6781
2011-01-31use val_help to present valid info for nodeMohit Mehta
2011-01-26Rearrange priority for pseudo-ethernetStephen Hemminger
Bug 6116 Do setup at same priority as VIF (since it is really macvlan) Do address after peth mac address is set. (cherry picked from commit 0f3aa38c15bb159d331dcfd91076ac37bd4c524e)
2011-01-06Change priority of bonding device addressStephen Hemminger
Bug 6642 Need slaves to be attached to bonding device before setting address (for DHCP). (cherry picked from commit 77297af866be32c058363f9cb3d104db9e00bb36)
2010-12-16Fix help for name-serverStephen Hemminger
Bug 5185
2010-12-15Add checking of protocol-version valueStephen Hemminger
Syntax checking and help.
2010-12-15Don't regenerate ssh v1 keyStephen Hemminger
The key generation is done during installation or earlier in rl-system.init
2010-12-10Fix 6453: After configuring VRRP on interface, VRRP is not active until VRRP ↵Stig Thormodsrud
is manually restared with "restart vrrp" command. - Move all commit checks into script on end node. - Add separate function for conntrack-sync settings. - Do per instance validation at the right priority level. - Verify that the changes file is removed on final transaction.
2010-12-06Allow telnet and ssh to start before routing protocolsStephen Hemminger
Bug 6474 Use priority 500 which is after login, syslog, etc.
2010-12-06Allow Ipv6 addresses in resolv.confStephen Hemminger
Bug 5185
2010-12-02Block accidental use of virtual consolesStephen Hemminger
The devices tty1 ... are virtual consoles and should not be configured through the CLI.
2010-12-02Allow configuring console speed etcStephen Hemminger
Bug 3849, 2289, 4126 Adds configuration of serial console: set system console { device ttyS0 { speed 19200 } device ttyACM0 { speed 57600 type modem } } This covers the cases of deleting serial console, changing speed, and allowing modem console devices
2010-12-02Fix delete of mac address on bonding interfaceStephen Hemminger
Bug 6489 Bonding device is a pseudo-device without hw-id, so deleting mac does nothing.
2010-11-30Add dhcpv6 options for all interfaces that support DHCPStephen Hemminger
DHCPv6 is not restricted to ethernet only anymore.
2010-11-24Fix range checking on bridge port priority is limited to 0-63Stephen Hemminger
Bug 5864 The STP port priority field is limited to a smaller range to allow more ports on the Linux bridge. Linux uses the same mapping as IOS so that in the STP port field there are 10 bits for port id and 6 bits for port priority.
2010-11-23Remove check function from keepalived perl scriptStephen Hemminger
No longer need check-vip option since the type checking is done in template
2010-11-23Improve performance of syntax checks for vrrp addressStephen Hemminger
Use CLI (ipv4,ipv4net) and new address validator to check addresses for VRRP.
2010-11-22Bonding should have same VRRP rules as EthernetStephen Hemminger
2010-11-22Don't allow zero for VRRP priority or VRIDStephen Hemminger
Bug 5673 Enfore restriction on values per RFC 3678
2010-11-22Optimize lookup of local ip on tunnelsStephen Hemminger
Speeds up boot with lots of tunnels
2010-11-22Use script vyatta-address to set interfaceStephen Hemminger
Avoid the overhead of perl compilation of vyatta-interfaces for each address added. Handle the case of deleting address on deleted device cleanly. Clean up dhcpv6 script so it can be used on interfaces other than ethernet.
2010-11-22Replace perl address validation with utilityStephen Hemminger
2010-11-19Cleanup tunnel slave device on last deleteStephen Hemminger
Need to leave gre0 around for case of multiple tunnels
2010-11-18When removing tunnel, remove encapsulation deviceStephen Hemminger
Bug 4608
2010-11-18Bring tunnel down before deletingStephen Hemminger
This is necessary to get routing protocols and proper cleanup
2010-11-18Fix help for syslogStephen Hemminger
Bug 5396 Make it clear that 'syslog file' takes a file name not a full path. Also make help text symmetrical for all logging options.
2010-11-18Add syntax check for bridge interface nameStephen Hemminger
Put in check for brN in bridge-group bridge. And make syntax error for bond-group better
2010-11-17Cleanup bond-group syntax and commit checksStephen Hemminger
Move check for address and state of slave to commit which allows for better error message.
2010-11-17Cleanup bridge port managementStephen Hemminger
Consolidate bridge port management into a single perl script. Done to fix the following bug. Bug 4745 Don't allow interface with address to be added to bridge.
2010-11-17Add address checks to bondingStephen Hemminger
Need to have same checks as ethernet for valid address on commit.
2010-11-17Remove useless commentStephen Hemminger
Comment was providing no useful information not already present in the template.
2010-11-17Allow longer domain-name valuesStephen Hemminger
Bug 6243 Change syntax checking for domain name. Don't enforce length restrictions since that is checked already elsewhere and may change. Do enforce the RFC 2181 character set values.
2010-11-16Need to restart telnet if port or listen-address changesStephen Hemminger
2010-11-16Add ability to configure telnet listen-addresStephen Hemminger
Bug 4452 Allow configuring a telnet listen-address either IPv4 or IPv6 (like SSH). Unlike SSH, telnet only supports a single listen-address
2010-11-16Add ability to configure SSH listen addressStephen Hemminger
Bug 2410 Add ability to add configure listen address in ssh_config. set service ssh listen-address 1.2.4.40 Multiple values are allowed, and works for both IPv4 and IPv6
2010-11-16Add option to disable host validation (DNS) for SSHStephen Hemminger
Bug 4970 New CLI control of UseDNS option to sshd_config set service ssh disable-host-validation
2010-11-15Restore IRQ affinity when device is renabledStephen Hemminger
Bug 5698 When interface transistions back to online, the driver may have reacquired IRQ's and the irq affinity script will need to be rerun.
2010-11-12New IRQ affinity script and RPS supportStephen Hemminger
Replace old script with new cleaner script that handles both IRQ affinity and Receive Packet Steering. Instead of two scripts (one for mask and one for auto), do it all with one script. Receive Packet Steering is supported in two ways. If 'auto' is used, then both threads on HT system will be used for receive processing. If explicit mask is given, then two masks can be used to set both IRQ cpus and RPS cpus.
2010-11-11Add more checks on VLANStephen Hemminger
Bug 4695 If ethernet hardware does not allow VLAN's than produce error. Ignore delete if device doesn't exist.
2010-11-08Check speed and duplex settings on Ethernet interfacesStephen Hemminger
Bug 4994 Use ethtool to check for supported speed and duplex values on link.
2010-11-02Remove non-functional commit test on mtu of vifStephen Hemminger
The syntax of parent MTU was wrong. The underlying driver already checks for MTU so the commit check is not needed.
2010-11-02Priority change for bridging a bonded vifStephen Hemminger
Bug 6048 Preconditions: 310 bridge 315 bonding 320 bonding vif 325 bonding vif bridge group