From Fedora Project Wiki
(Created page with "=== Build & distributions === I would like to remove --with-distro. Currently only initscripts are need it and I would like to remove them and leave them up to distributions ...")
 
No edit summary
Line 19: Line 19:


I want to have platform interaction in one place (NMPlatform class in 'pavlix/next'). Other module should not depend on NMNetlinkMonitor
I want to have platform interaction in one place (NMPlatform class in 'pavlix/next'). Other module should not depend on NMNetlinkMonitor
=== Configuration simplification ===
Currently a configuration file for Ethernet looks like this:
<pre>
[connection]
id=Ethernet
uuid=d880f3bb-8c51-4ca4-aef7-1954e022820f
type=802-3-ethernet
[802-3-ethernet]
mac-address=52:54:00:eb:e9:fb
</pre>
I would like it to look more like this:
<pre>
[connection]
type=ethernet
[ethernet]
mac-address=52:54:00:eb:e9:fb
</pre>


=== Regression testing ===
=== Regression testing ===

Revision as of 22:37, 26 September 2012

Build & distributions

I would like to remove --with-distro. Currently only initscripts are need it and I would like to remove them and leave them up to distributions (if we can't have one mostly working initscript).

Interfaces

Ethernet bridges and bonds work in 'pavlix/next'. They should work in any combination with VLAN, which I didn't test (dcbw/danw might know more).

IP configuration

Manual configuration works but gateway still can't be specified separately.

IPv6 router advertisements are handled by the kernel. SLAAC and RA DNS options work. D HCPv6 works. The 'DHCP Only' method is both broken and useless, should be removed. Methods should be more consistent between IPv4 and IPv6.

Platform interaction

I want to have platform interaction in one place (NMPlatform class in 'pavlix/next'). Other module should not depend on NMNetlinkMonitor

Configuration simplification

Currently a configuration file for Ethernet looks like this:

[connection]
id=Ethernet
uuid=d880f3bb-8c51-4ca4-aef7-1954e022820f
type=802-3-ethernet

[802-3-ethernet]
mac-address=52:54:00:eb:e9:fb

I would like it to look more like this:

[connection]
type=ethernet

[ethernet]
mac-address=52:54:00:eb:e9:fb

Regression testing

I want to have a fake NMPlatform and fake DHCP plugin implementations that would be used for complex (non-integration) tests of NetworkManager's behavior. I would like to test the following things for the beginning:

  • Ethernet
  • Manual IPv4 and IPv6
  • Automatic IPv4 and IPv6
  • Bridges, bonds and VLANs
  • Connection assumption

The tests would be fully automatic and would not depend on virtualization or root access. They would prevent regressions in critical parts of NetworkManager. The basic set testsuite would also be very quick.

Keyfile documentation

I already had to set up lots of testing configurations. It's probably time to start writing manpages.