Age | Commit message (Collapse) | Author |
|
Since inittab allows up to 4 characters for id field, allow 1000
entries.
|
|
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
|
|
Bug 6407
Allow configuration commands to create files in /var/run/vyatta
without being root.
|
|
Need to cleanup breadcrumb files on boot.
Fix spellin errors
|
|
The progress bar for copy files is nice but slows down the install
because it updates too often
|
|
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.
|
|
Interface addresses are now checked with other code.
|
|
Perl is no longer used for syntax checks, instead put duplicate address check
into commit.
|
|
When system is booted with newly detected wireless device, both
the hw-id and physical-device need to be setup.
|
|
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.
|
|
The test for mixing dhcp and static ipv4 could cause perl warning
from comparing undefined with numeric.
|
|
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.
|
|
Bug 6445
Biosdevname program converts everything to eth devices.
|
|
Lots of errors in original version.
|
|
mendocino
|
|
No longer need check-vip option since the type checking is done
in template
|
|
Faster to use perl to remove file than going out to shell.
|
|
Much faster to user perl sockets to test if IP address is okay,
rather than scanning ip addresses.
|
|
|
|
|
|
mendocino
|
|
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.
|
|
mendocino
|
|
|
|
|
|
Need to leave gre0 around for case of multiple tunnels
|
|
Don't allow putting bridge port into bond-group (and vice-versa).
|
|
Move check for address and state of slave to commit which
allows for better error message.
|
|
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.
|
|
Bug 4745
Don't allow interface with address to be added to bond
|
|
Bug 4745
Block putting address on interface that is part of a bridge (or bonding).
Address should only be assigned to the master device, not the slave.
Also changes messge on error since CLI now displays error location.
|
|
Bug 4452
Allow configuring a telnet listen-address either IPv4 or IPv6 (like SSH).
Unlike SSH, telnet only supports a single listen-address
|
|
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
|
|
Bug 4970
New CLI control of UseDNS option to sshd_config
set service ssh disable-host-validation
|
|
|
|
If config has interface (without hw-id), then add it on boot.
|
|
This gets rid of separate init file for wan interfaces
|
|
Typo in sprintf (perl doesn't have %c).
Also improve error messages.
|
|
Need to handle virtual devices with no IRQ, and older processors
without concept of multi-core.
|
|
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.
|
|
The executable bit should be set on scripts.
This only impacts the repository, during build install fixes it.
|
|
Bug 5552
For devices like Xen that don't do ethtool speed/duplex,
allow auto to work but produce error for any other value.
|
|
Bug 4994
Use ethtool to check for supported speed and duplex values on link.
|
|
In Debian Squeeze ethtool is in /sbin
|
|
|
|
Need to handle get next of base OID
|
|
New script to produce ifAlias information from sysfs.
|
|
It is better to just check using normal code path on uniproc
than to make everything a special case.
|
|
1. Move scripts to vyatta-cfg-system
2. Use syntax to check for legal values
3. Don't fail on UP
|
|
mendocino
|