Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-04-15 | Rename in0 to ifb0 | Stephen Hemminger | |
Better name suggestion. | |||
2010-04-06 | Defer reading ppp config until necessary | Stephen Hemminger | |
Only read ppp peers and config if looking for config path. Other properties don't need it. | |||
2010-04-06 | Add support for input interface in Interface module | Stephen Hemminger | |
2010-03-29 | Allow reading interface description outside config mode | Stephen Hemminger | |
The Interface() object doesn't work for PPP in operational mode. So split out interface_description routine. | |||
2010-03-17 | Fix typo in adsl interface discovery | Stephen Hemminger | |
Need to use correct path when searching config path. | |||
2010-03-15 | Fix PPP serial QoS support | Stephen Hemminger | |
Bug 5005 PPPOE devices live in multiple places in the tree, so code needs to go searching to find them. | |||
2010-02-18 | add fucntion to return bridge-group that an interface might be assigned to | Mohit Mehta | |
2010-02-10 | Fix handling of pppoe devices | Stephen Hemminger | |
PPPoE devices don't have VIF's and are named 'pppoeN' not 'pppN'. | |||
2010-02-10 | Fix missing bracket | Stephen Hemminger | |
Interface.pm syntax error. | |||
2010-02-09 | Add preliminary support for pppoe devices | Stephen Hemminger | |
QoS needs to be able to convert from device name back to path in the config hierarchy. This is is a first step. | |||
2009-11-04 | Fix missing semicolon. | Stig Thormodsrud | |
2009-11-03 | Fix uninitialized variable when reading carrier on admin down interface. | Stig Thormodsrud | |
2009-11-01 | Fix spelling error in carrier method. | Stig Thormodsrud | |
2009-11-01 | Fix carrier method. | Stig Thormodsrud | |
2009-11-01 | Add method to retrieve carrier value. | Stig Thormodsrud | |
2009-07-30 | Add hw_address method for use in bonding | Stephen Hemminger | |
Bonding management needs easy way to find hardware address. Related to Bug 4758 (cherry picked from commit a4404bfb3c4243967a4434707213430d5c4df58e) | |||
2009-06-12 | Make sure interface name regex are anchored | Stephen Hemminger | |
This solves the problem that 'show interfaces ethernet' also shows pseudo ethernet (peth0) device. The problem was that peth0 matched the regex since it was missing start/end. (cherry picked from commit 77fb131b888bafd815722ebdceb5282b43dbb96d) | |||
2009-05-16 | Add wireless device to table | Stephen Hemminger | |
Place holder for future work. | |||
2009-04-29 | Rename virtual-ethernet to pseudo-ethernet | Stephen Hemminger | |
Avoid name conflict with veth in Xen. | |||
2009-04-27 | Fix path to virtual-ethernet | Stephen Hemminger | |
And indent net_prefix | |||
2009-04-24 | Add support for virtual-ethernets | Stephen Hemminger | |
2009-03-23 | Cleanup description string | Stephen Hemminger | |
Remove trailing newline and any leading whitespace. | |||
2009-03-23 | Remove #! /usr/bin/perl | Stephen Hemminger | |
The modules are not perl executables, they are modules. Fixes lintian warning | |||
2009-03-02 | Remove duplicate constants. | Stig Thormodsrud | |
2009-03-01 | Fix call to Vyatta::Misc::getIP() | Stig Thormodsrud | |
2009-02-26 | Fix regex for VIF name extraction | Stephen Hemminger | |
Incorrect paren was breaking commands with VIF | |||
2009-02-19 | Typo in regex for vtun | Stephen Hemminger | |
Wouldn't match openvpn tunnels correctly. | |||
2009-02-18 | Add Vyatta::Interface::get_interfaces | Stephen Hemminger | |
Hook to get types listed in net_prefix table. | |||
2009-02-10 | Add new option for checking name validity | Stephen Hemminger | |
Many templates should allow any known interface type, since interface may be created later. So create some generic hooks for validation. | |||
2009-01-20 | Fix isIPinInterfaces | Stephen Hemminger | |
fix bug in conversion to Vyatta::Interface by rewriting/refactoring. | |||
2009-01-13 | Ignore IPV6 addresses in getInterfacesIPadresses | Stephen Hemminger | |
This routine is used by DHCP server and needs to ignore IPV6 addresses. NB: Does not fix bogus spellung. | |||
2009-01-12 | Better version of getIPadresses and getInterfacesdebian/0.14.2 | Stephen Hemminger | |
Use new Vyatta::Interface and sysfs to avoid using ifconfig and ip command unnecessarily. | |||
2009-01-12 | Use new interfaces routines | Stephen Hemminger | |
Unify all code that does name -> interface attribute translation into one place. No need to pass interface path to scripts, and handle addresses correctly in DHCP code. Use 'undef' consitently for false in perl code. | |||
2009-01-07 | New Vyatta::Interface infrastructure | Stephen Hemminger | |
Provide generic module to map interface name to configuration and other attributes. This is first step to ripping the special case code out of DHCP, QoS, ... that all have own rules for mapping name to configuration and configuration to name. |