summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-09-04bonding: T1614: can not set primary interface when it's not part of the bondChristian Poessinger
2019-09-04bonding: T1614: Initial version in new style XML/Python interfaceChristian Poessinger
The node 'interfaces ethernet eth0 bond-group' has been changed and de-nested. Bond members are now configured in the bond interface itself. set interfaces bonding bond0 member interface eth0
2019-09-03Python/ifconfig: T1557: cleanup __init__/debugChristian Poessinger
2019-09-03Python/ifconfig: T1557: derive BondIf from EthernetIf as we need VLANsChristian Poessinger
2019-09-03Python/ifconfig: T1557: add description for Interface classesChristian Poessinger
2019-09-03Python/ifconfig: T1557: bonding: add primary and mode propertyChristian Poessinger
2019-09-03Python/ifconfig: T1557: bonding: add get_slaves() callChristian Poessinger
2019-09-03Python/ifconfig: T1557: bonding: disable interface prior enslaving themChristian Poessinger
An interface can only be added to a bond if it is in 'down' state. If interface is in 'up' state, the following Kernel error will be thrown: > bond0: eth1 is up - this may be due to an out of date ifenslave.
2019-09-03Python/ifconfig: T1557: adjust debug message format #2Christian Poessinger
2019-09-03Python/ifconfig: T1557: bonding: add {add,del}_port for slave interfaceChristian Poessinger
2019-09-03Python/ifconfig: T1557: add message to raised ExceptionsChristian Poessinger
2019-09-03Python/ifconfig: T1556: bridge: no need to manually generate an exceptionChristian Poessinger
2019-09-03Python/ifconfig: T1557: adjust debug message formatChristian Poessinger
* remove missleading " as first character with no closing quote * use single quotes in output messages (unclutter) * when writing changes, make output string copy/pasteable my changing '->' to '>'
2019-09-03Python/ifconfig: T1557: bonding: bugfix read_sysfs when debug is enabledChristian Poessinger
2019-09-03Python/ifconfig: T1557: bonding: bugfix setting ARP IP targetChristian Poessinger
2019-09-01Merge pull request #119 from alkersan/T1621_misc_rewritesChristian Poessinger
[op-mode] T1621 rewrite misc commands to python/xml syntax
2019-09-01Python/ifconfig: T1557: bonding: add arp_ip_targetChristian Poessinger
2019-09-01Python/ifconfig: T1557: bonding: add arp_intervalChristian Poessinger
2019-09-01Python/ifconfig: T1557: bonding: add xmit_hash_policyChristian Poessinger
2019-09-01Python/ifconfig: T1557: add proxy_arp{_pvlan} functionsChristian Poessinger
2019-09-01bridge: T1615: remove is_ip import from vyos.validateChristian Poessinger
2019-09-01bridge: T1615: support deleting interface descriptionChristian Poessinger
2019-09-01Revert "bridge: T1556: increase max-age range to 1200 (30 minutes)"Christian Poessinger
This reverts commit 3b119c91ca70c51aab24d4ef8b3913f47281321a.
2019-09-01Python/ifconfig: T1557: migrate all sysfs calls to {read,write}_sysfs helperChristian Poessinger
Introduced in commit f524254 ("Python/ifconfig: T1557: use read/write helpers to interface with sysfs") migrate all remaining calls to this new helper. This enables us to have a single debug call and a single place for error checking.
2019-09-01bridge: T1556: change 'aging' help textChristian Poessinger
2019-09-01Merge pull request #123 from jestabro/currentDaniil Baturin
[boot-config-loader] T1622: Add failsafe and back trace
2019-08-31[boot-config-loader] T1622: Add failsafe and back traceJohn Estabrook
2019-08-31Python/ifconfig: T1557: enable debugging with DEBUG=1 environment variableChristian Poessinger
2019-08-31Python/ifconfig: T1557: use read/write helpers to interface with sysfsChristian Poessinger
2019-08-31Python/ifconfig: T1557: cleanup import sectionChristian Poessinger
2019-08-31loopback: T1601: support deleting interface descriptionChristian Poessinger
2019-08-31dummy: T1580: support deleting interface descriptionChristian Poessinger
2019-08-31Merge pull request #121 from c-po/t1557-ifconfigChristian Poessinger
T1557 Create generic abstraction for configuring interfaces e.g. IP address
2019-08-31Debian: remove pyroute2 dependencyChristian Poessinger
2019-08-31loopback: T1601: migrate from pyroute2 -> vyos.ifconfigChristian Poessinger
2019-08-31dummy: T1580: migrate from pyroute2 -> vyos.ifconfigChristian Poessinger
2019-08-31bridge: T1615: replace pyroute2 by vyos.ifconfigChristian Poessinger
2019-08-31Python/ifconfig: T1557: fix DHCP/DHCPv6 daemon and add Bridge/Dummy interfaceChristian Poessinger
2019-08-31bridge: T1556: increase max-age range to 1200 (30 minutes)Christian Poessinger
2019-08-31Merge pull request #120 from DmitriyEshenko/ipsec-l2tpDaniil Baturin
[l2tp ipsec] T1605: Changed ipsec marking only for inbound policy, al…
2019-08-31[l2tp ipsec] T1605: Changed ipsec marking only for inbound policy, all ↵DmitriyEshenko
functionality must saved
2019-08-30Python/ifconfig: cleanup import statementsChristian Poessinger
2019-08-30Python/ifconfig: remove ipv4/ipv6 handling, iproute2 autodetects addr familyChristian Poessinger
2019-08-30T1598: fix vyos-hostsd unit dependencies.Daniil Baturin
2019-08-30[op-mode] T1621 rewrite misc commands to python/xml syntaxDmytro Aleksandrov
2019-08-30Python/ifconfig: rename interfaceconfig.py -> ifconfig.pyChristian Poessinger
2019-08-30Python/ifconfig: re-work IP address creation/deletionChristian Poessinger
2019-08-30Python/ifconfig: replace up()/down() with 'state' propertyChristian Poessinger
Commit cb1b72c5c ("Python/ifconfig: replace linkstate() with up()/down() methods") replaced the linkstate property in favour of up()/down() functions. Instead it really makes more sense to have a propery to also query the current linkstate from sysfs.
2019-08-30Python/ifconfig: add @property statement on 'remove' callChristian Poessinger
2019-08-30Python/ifconfig: re-work and rename remove_interface() -> remove() to delete ↵Christian Poessinger
an interface