nixos/tests/networking.*.macvlan: disable reverse path check

Generated reverse path filtering rules for the macvlan interface
seem to be incorrect, causing the test to fail - sometimes or always,
depending on the dhcpcd version used.
- Disable reverse path checking temporarily to avoid blocking the channel
- Print more diagnostic information for debugging

Uli Baum 13c3986b 8938eede

Changed files
+14 -1
nixos
+14 -1
nixos/tests/networking.nix
···
let
vlanIfs = range 1 (length config.virtualisation.vlans);
in {
+
environment.systemPackages = [ pkgs.iptables ]; # to debug firewall rules
virtualisation.vlans = [ 1 2 3 ];
boot.kernel.sysctl."net.ipv6.conf.all.forwarding" = true;
networking = {
···
name = "MACVLAN";
nodes.router = router;
nodes.client = { pkgs, ... }: with pkgs.lib; {
+
environment.systemPackages = [ pkgs.iptables ]; # to debug firewall rules
virtualisation.vlans = [ 1 ];
networking = {
useNetworkd = networkd;
+
firewall.logReversePathDrops = true; # to debug firewall rules
+
# reverse path filtering rules for the macvlan interface seem
+
# to be incorrect, causing the test to fail. Disable temporarily.
+
firewall.checkReversePath = false;
firewall.allowPing = true;
useDHCP = true;
macvlans.macvlan.interface = "eth1";
···
$client->waitUntilSucceeds("ip addr show dev eth1 | grep -q '192.168.1'");
$client->waitUntilSucceeds("ip addr show dev macvlan | grep -q '192.168.1'");
-
# Print diagnosting information
+
# Print lots of diagnostic information
+
$router->log('**********************************************');
$router->succeed("ip addr >&2");
+
$router->succeed("ip route >&2");
+
$router->execute("iptables-save >&2");
+
$client->log('==============================================');
$client->succeed("ip addr >&2");
+
$client->succeed("ip route >&2");
+
$client->execute("iptables-save >&2");
+
$client->log('##############################################');
# Test macvlan creates routable ips
$client->waitUntilSucceeds("ping -c 1 192.168.1.1");