Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-12-04 | 0.19.15debian/0.19.15 | Stig Thormodsrud | |
2010-12-04 | Set up commit-revisions if configured after init-floppy. | Stig Thormodsrud | |
2010-12-02 | 0.19.14debian/0.19.14 | Stephen Hemminger | |
2010-12-02 | Mark the Vyatta specific section of inittab | Stephen Hemminger | |
2010-12-02 | Block accidental use of virtual consoles | Stephen Hemminger | |
The devices tty1 ... are virtual consoles and should not be configured through the CLI. | |||
2010-12-02 | Allow more serial console lines | Stephen Hemminger | |
Since inittab allows up to 4 characters for id field, allow 1000 entries. | |||
2010-12-02 | Allow configuring console speed etc | Stephen 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-02 | 0.19.13debian/0.19.13 | Stephen Hemminger | |
2010-12-02 | Fix delete of mac address on bonding interface | Stephen Hemminger | |
Bug 6489 Bonding device is a pseudo-device without hw-id, so deleting mac does nothing. | |||
2010-12-02 | Set group ownership and permissions on /var/run/vyatta | Stephen Hemminger | |
Bug 6407 Allow configuration commands to create files in /var/run/vyatta without being root. | |||
2010-12-02 | Cleanup leftover ipv6_no_fwd files | Stephen Hemminger | |
Need to cleanup breadcrumb files on boot. Fix spellin errors | |||
2010-12-01 | 0.19.12debian/0.19.12 | Stephen Hemminger | |
2010-12-01 | Speed up install-system progress bar | Stephen Hemminger | |
The progress bar for copy files is nice but slows down the install because it updates too often | |||
2010-11-30 | 0.19.11debian/0.19.11 | Stephen Hemminger | |
2010-11-30 | Fix dhcpv6 client script | Stephen Hemminger | |
Some compile and typo errors. Don't capture output, let it flow through to console. Use exec to get correct error code from dhcpv6 client program. | |||
2010-11-30 | 0.19.10debian/0.19.10 | Stephen Hemminger | |
2010-11-30 | Remove old code for address insertion/deletion/validation | Stephen Hemminger | |
Interface addresses are now checked with other code. | |||
2010-11-30 | Add duplicate address check on commit | Stephen Hemminger | |
Perl is no longer used for syntax checks, instead put duplicate address check into commit. | |||
2010-11-30 | Add dhcpv6 options for all interfaces that support DHCP | Stephen Hemminger | |
DHCPv6 is not restricted to ethernet only anymore. | |||
2010-11-29 | 0.19.9debian/0.19.9 | Stephen Hemminger | |
2010-11-29 | Merge branch 'mendocino' of vm:rel/vyatta-cfg-system into mendocino | Stephen Hemminger | |
2010-11-29 | Automatically configure physical device for wireless interfaces | Stephen Hemminger | |
When system is booted with newly detected wireless device, both the hw-id and physical-device need to be setup. | |||
2010-11-29 | Merge branch 'mendocino' of vm:rel/vyatta-cfg-system into mendocino | Stephen Hemminger | |
2010-11-29 | Fix interface scanning on boot - allow more mac addresses | Stephen Hemminger | |
The code to match on locally assigned bit had a bad regex. Use conversion to hex and mask instead. Also don't allow multicast address bit. | |||
2010-11-29 | 0.19.8debian/0.19.8 | Stephen Hemminger | |
2010-11-29 | Fix use of undefined in comparison | Stephen Hemminger | |
The test for mixing dhcp and static ipv4 could cause perl warning from comparing undefined with numeric. | |||
2010-11-29 | 0.19.7debian/0.19.7 | Stephen Hemminger | |
2010-11-29 | Remove module rather than deleting link device | Stephen Hemminger | |
The special tunnel device gre0 (etc) are created by module when installed. If the the device is deleted directly then following attempts to create tunnels will fail. The proper way to cleanup is to remove the module which will remove the special device and save memory. | |||
2010-11-24 | 0.19.6debian/0.19.6 | Stephen Hemminger | |
2010-11-24 | Merge branch 'mendocino' of vm:rel/vyatta-cfg-system into mendocino | Stephen Hemminger | |
2010-11-24 | Don't let biosdevname look at wireless devices | Stephen Hemminger | |
Bug 6445 Biosdevname program converts everything to eth devices. | |||
2010-11-24 | 0.19.5debian/0.19.5 | Stephen Hemminger | |
2010-11-24 | Fix tunnel cleanup script | Stephen Hemminger | |
Lots of errors in original version. | |||
2010-11-24 | 0.19.4debian/0.19.4 | Stephen Hemminger | |
2010-11-24 | Revert "Don't need to rename vlan devices" | Stephen Hemminger | |
This reverts commit c2c15ef2d6a85d40e778a0d84f243d2ae99c56ba. | |||
2010-11-24 | Fix range checking on bridge port priority is limited to 0-63 | Stephen 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-24 | Add cpufrequtils default config file | Stephen Hemminger | |
If cpufrequtils is installed, then want the default to be full performance. | |||
2010-11-23 | 0.19.3debian/0.19.3 | Stephen Hemminger | |
2010-11-23 | Merge branch 'mendocino' of suva.vyatta.com:/git/vyatta-cfg-system into ↵ | Stephen Hemminger | |
mendocino | |||
2010-11-23 | Remove check function from keepalived perl script | Stephen Hemminger | |
No longer need check-vip option since the type checking is done in template | |||
2010-11-23 | Use unlink rather than system() to remove files in keepalive script | Stephen Hemminger | |
Faster to use perl to remove file than going out to shell. | |||
2010-11-23 | Use sockets to check if IP address is local | Stephen Hemminger | |
Much faster to user perl sockets to test if IP address is okay, rather than scanning ip addresses. | |||
2010-11-23 | Improve performance of syntax checks for vrrp address | Stephen Hemminger | |
Use CLI (ipv4,ipv4net) and new address validator to check addresses for VRRP. | |||
2010-11-23 | Make scripts executable | Stephen Hemminger | |
2010-11-23 | Don't need to rename vlan devices | Stephen Hemminger | |
Avoid calling vyatta_net_name on vlan's | |||
2010-11-22 | typo in tunnel cleanup | Stephen Hemminger | |
2010-11-22 | Bonding should have same VRRP rules as Ethernet | Stephen Hemminger | |
2010-11-22 | Don't allow zero for VRRP priority or VRID | Stephen Hemminger | |
Bug 5673 Enfore restriction on values per RFC 3678 | |||
2010-11-22 | 0.19.1debian/0.19.1 | Stephen Hemminger | |
2010-11-22 | Merge branch 'mendocino' of suva.vyatta.com:/git/vyatta-cfg-system into ↵ | Stephen Hemminger | |
mendocino |