]> git.proxmox.com Git - pve-network.git/commitdiff
zones: evpn|simple: add snat iptables rules
authorAlexandre Derumier <aderumier@odiso.com>
Mon, 5 Oct 2020 15:08:56 +0000 (17:08 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 6 Oct 2020 16:17:19 +0000 (18:17 +0200)
(use snat instead masquerade for performance)

Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
PVE/Network/SDN/Zones/EvpnPlugin.pm
PVE/Network/SDN/Zones/SimplePlugin.pm

index ff25f12e1976e4e50b792aedcadef77b06536e55..b89f4b16a5e17ffe4c1c4f6b4b4983002e817ec9 100644 (file)
@@ -51,6 +51,7 @@ sub generate_sdn_config {
 
     my $vrf_iface = "vrf_$zoneid";
     my $vrfvxlan = $plugin_config->{'vrf-vxlan'};
+    my $local_node = PVE::INotify::nodename();
 
     die "missing vxlan tag" if !$tag;
     warn "vlan-aware vnet can't be enabled with evpn plugin" if $vnet->{vlanaware};
@@ -86,6 +87,23 @@ sub generate_sdn_config {
            push @iface_config, "address $gateway" if !defined($address->{$gateway});
            $address->{$gateway} = 1;
        }
+       if ($subnet->{snat}) {
+           my $gatewaynodes = $controller->{'gateway-nodes'};
+           my $is_evpn_gateway = "";
+           foreach my $evpn_gatewaynode (PVE::Tools::split_list($gatewaynodes)) {
+               $is_evpn_gateway = 1 if $evpn_gatewaynode eq $local_node;
+           }
+            #find outgoing interface
+            my ($outip, $outiface) = PVE::Network::SDN::Zones::Plugin::get_local_route_ip('8.8.8.8');
+            if ($outip && $outiface && $is_evpn_gateway) {
+                #use snat, faster than masquerade
+                push @iface_config, "post-up iptables -t nat -A POSTROUTING -s '$cidr' -o $outiface -j SNAT --to-source $outip";
+                push @iface_config, "post-down iptables -t nat -D POSTROUTING -s '$cidr' -o $outiface -j SNAT --to-source $outip";
+                #add conntrack zone once on outgoing interface
+                push @iface_config, "post-up iptables -t raw -I PREROUTING -i fwbr+ -j CT --zone 1";
+                push @iface_config, "post-down iptables -t raw -D PREROUTING -i fwbr+ -j CT --zone 1";
+            }
+        }
     }
 
     push @iface_config, "hwaddress $mac" if $mac;
index a4299dde4ad883b0616ee89be697cae8496f13b7..c58ae877c09daaadacaec4200c96d8c8c39284e3 100644 (file)
@@ -48,6 +48,18 @@ sub generate_sdn_config {
        #add route for /32 pointtopoint
        my ($ip, $mask) = split(/\//, $cidr);
        push @iface_config, "up ip route add $cidr dev $vnetid" if $mask == 32;
+       if ($subnet->{snat}) {
+           #find outgoing interface
+           my ($outip, $outiface) = PVE::Network::SDN::Zones::Plugin::get_local_route_ip('8.8.8.8');
+           if ($outip && $outiface) {
+               #use snat, faster than masquerade
+               push @iface_config, "post-up iptables -t nat -A POSTROUTING -s '$cidr' -o $outiface -j SNAT --to-source $outip";
+               push @iface_config, "post-down iptables -t nat -D POSTROUTING -s '$cidr' -o $outiface -j SNAT --to-source $outip";
+               #add conntrack zone once on outgoing interface
+               push @iface_config, "post-up iptables -t raw -I PREROUTING -i fwbr+ -j CT --zone 1";
+               push @iface_config, "post-down iptables -t raw -D PREROUTING -i fwbr+ -j CT --zone 1";
+           }
+       }
     }
 
     push @iface_config, "hwaddress $mac" if $mac;