Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-05-17 | networkd: IP address equality | Tom Gundersen | |
2014-05-16 | networkd: add missing files | Tom Gundersen | |
2014-05-16 | networkd: manager - read fallback DNS servers from config file | Tom Gundersen | |
We will still use the compiled-in defaults if no DNS entry exists in the config file. | |||
2014-05-16 | networkd: network - store DNS servers in List rather than Set | Tom Gundersen | |
This way we preserve the order of preference. | |||
2014-05-16 | networkd: hardcode a set of default dns servers | Tom Gundersen | |
Similarly to NTP servers, this can be set at compile-time. | |||
2014-05-16 | networkd: log the initialization status of links | Tom Gundersen | |
2014-05-16 | networkd: fix typo | Tom Gundersen | |
2014-05-16 | networkd: rename Address and Route list fields | Tom Gundersen | |
2014-05-15 | networkd: logging - align messages | Tom Gundersen | |
2014-05-15 | networkd: log ifindices when links and netdevs are added | Tom Gundersen | |
2014-05-15 | networkd: rename NetDev variable for consistency with Link | Tom Gundersen | |
2014-05-15 | networkd, build-sys: spelling fix | Zbigniew Jędrzejewski-Szmek | |
2014-05-15 | sd-bus: introduce sd_bus_slot objects encapsulating callbacks or vtables ↵ | Lennart Poettering | |
attached to a bus connection This makes callback behaviour more like sd-event or sd-resolve, and creates proper object for unregistering callbacks. Taking the refernce to the slot is optional. If not taken life time of the slot will be bound to the underlying bus object (or in the case of an async call until the reply has been recieved). | |||
2014-05-12 | networkd-ipip-tunnel: add support ttl | Susant Sahani | |
Add support for ipip tunnel ttl. | |||
2014-05-12 | networkd: manager - don't leak kmod context | Tom Gundersen | |
Also, keep the kmod_new internal to networkd-manager.c | |||
2014-05-12 | networkd: introduce ipip tunnel | Susant Sahani | |
This patch enables basic ipip tunnel support. It works with kernel module ipip example conf: file: ipip.netdev [NetDev] Name=ipip-tun Kind=ipip MTUBytes=1480 [Tunnel] Local=192.168.223.238 Remote=192.169.224.239 TTL=64 file: ipip.network [Match] Name=em1 [Network] Tunnel=ipip-tun [tomegun: - drop unused variable - take ref when enslaving] | |||
2014-05-11 | networkd: get preexiting addresses when a link is added | Tom Gundersen | |
2014-05-10 | networkd: listen for address changes | Tom Gundersen | |
This is proof-of-concept only, as we only log the changes but don't do anything with it. | |||
2014-05-10 | rtnl: change from bitmask to enum for rtnl groups | Tom Gundersen | |
The bitmask is deprecated in the kernel, so move to the new interface. At the moment this does not make a difference for us, but it avoids having to change the API in the future. | |||
2014-05-10 | networkd: link - redo flag change logging | Tom Gundersen | |
Make the logging less verbose by only printing all the changed flags on one line, at the same time make it more complete by supporting all flags currently supported by the kernel. We still fall back to printing the raw flags in case we get something we do not recognize This may be useful when running on new kernels. | |||
2014-05-10 | networkd: network - fix leak | Tom Gundersen | |
2014-05-10 | networkd: manager - initialize variables | Tom Gundersen | |
2014-05-10 | networkd: netdev - rephrase logging message a bit | Tom Gundersen | |
Make it fit with what is logged from the link. | |||
2014-05-10 | networkd: manager - refactor link tracking a bit | Tom Gundersen | |
2014-05-09 | networkd: link - don't log errors when missing routes/addresses are dropped | Tom Gundersen | |
We were ignoring the wrong errno. | |||
2014-05-09 | networkd: link - handle links coming back to life | Tom Gundersen | |
When enslaving devices, we may receieve DELLINK/NEWLINK for the same ifindex, let's not be confused by this. | |||
2014-05-09 | networkd: reorder bonding and bridging | Tom Gundersen | |
A link should only ever be part of one, but if we accidentally do both, let's do it in the right order so the failure is more obvious in the logs. | |||
2014-05-09 | networkd: manager - drop links and netdevs when we receive DELLINK | Tom Gundersen | |
2014-05-09 | networkd: netdev - drop if creation fails | Tom Gundersen | |
This ensures that all links waiting to be enslaved are notified that the netdev does not exist. | |||
2014-05-09 | networkd: link - introduce LINGER state and link_drop() | Tom Gundersen | |
We need the LINGER state in case we still have references to the link after it has been dropped. | |||
2014-05-09 | networkd: netdev - introduce LINGER state and netdev_drop() | Tom Gundersen | |
We need the LINGER state in case we still have references to the netdev after it has been dropped. | |||
2014-05-09 | networkd: netdev - cancel all callbacks when freeing | Tom Gundersen | |
This notifies the link that the netdev no longer exists. | |||
2014-05-09 | networkd: link - take refcounts on links | Tom Gundersen | |
We need to take a refcount on the link whenever we expect a callback. The exceptions are the ipv4ll/dhcp clients as their lifetimes are guaranteed to be shorter than that of the link. | |||
2014-05-09 | networkd: network - do reference counting on netdevs | Tom Gundersen | |
2014-05-09 | networkd: network - merge all netdev parsing into one function | Tom Gundersen | |
2014-05-09 | networkd: introduce refcounting for Links and NetDevs | Tom Gundersen | |
2014-05-09 | networkd: link - clean up state files | Tom Gundersen | |
Also keep the path to the lease file around rather than regenarating it all the time. | |||
2014-05-08 | sd-network: expose global operational state | Tom Gundersen | |
2014-05-08 | networkd-wait-online: flush monitor events after processing | Tom Gundersen | |
Otherwise the event will trigger immediately again. | |||
2014-05-08 | networkd-wait-online: fix false positives when checking if a link is managed ↵ | Tom Gundersen | |
by networkd | |||
2014-05-08 | networkd: link - operstate is an enum, not a bitmask | Tom Gundersen | |
2014-05-07 | networkd-wait-online: rely purely on sd-network events and drop rtnl hooks | Tom Gundersen | |
2014-05-07 | networkd: link - always maintain link operstate regardless of admin state | Tom Gundersen | |
2014-05-07 | sd-network: expose both admin and operational state directly | Tom Gundersen | |
Also add a call to check if a link is loopback, as this should commonly be ignored. | |||
2014-04-30 | networkd: dont configure route if lease doesn't have one | Umut Tezduyar Lindskog | |
2014-04-30 | sd-network: add support for only listening to some types of changes | Tom Gundersen | |
2014-04-28 | networkd: link - don't fail a link if RF kill is active | Tom Gundersen | |
2014-04-28 | networkd: netdev - log when loading a .netdev file | Tom Gundersen | |
2014-04-27 | networkd: do not complain about IFF_RUNNING | Umut Tezduyar Lindskog | |
Otherwise: eth0: unknown link flags gained: 0x00040 (ignoring) [tomegun: hiding these messages is ok, as IFF_RUNNING is redundant and can be deduced from operstate and IFF_LOWER_UP] | |||
2014-04-26 | networkd-wait-online: refactor a bit | Tom Gundersen | |
Clarify that we are waiting for any link to reach 'carrier' state, regardless of who manages it. This will be useful when we add support for waiting for more operational states. |