]> git.proxmox.com Git - pve-network.git/blame - PVE/Network/SDN/Zones/EvpnPlugin.pm
Fix vnet gateway for routed setup + /32 pointopoint subnet
[pve-network.git] / PVE / Network / SDN / Zones / EvpnPlugin.pm
CommitLineData
f5eabba0 1package PVE::Network::SDN::Zones::EvpnPlugin;
63586d2f
AD
2
3use strict;
4use warnings;
f5eabba0 5use PVE::Network::SDN::Zones::VxlanPlugin;
63586d2f
AD
6use PVE::Tools qw($IPV4RE);
7use PVE::INotify;
5ca07ed9
AD
8use PVE::Cluster;
9use PVE::Tools;
10
4405f2de 11use PVE::Network::SDN::Controllers::EvpnPlugin;
63586d2f 12
f5eabba0 13use base('PVE::Network::SDN::Zones::VxlanPlugin');
63586d2f
AD
14
15sub type {
16 return 'evpn';
17}
18
63586d2f
AD
19sub properties {
20 return {
63586d2f
AD
21 'vrf-vxlan' => {
22 type => 'integer',
23 description => "l3vni.",
24 },
25 'controller' => {
26 type => 'string',
27 description => "Frr router name",
28 },
29 };
30}
31
32sub options {
33
34 return {
c2b9c173 35 nodes => { optional => 1},
63586d2f
AD
36 'vrf-vxlan' => { optional => 0 },
37 'controller' => { optional => 0 },
823f2e2a 38 mtu => { optional => 1 },
63586d2f
AD
39 };
40}
41
42# Plugin implementation
43sub generate_sdn_config {
7024ec2b 44 my ($class, $plugin_config, $zoneid, $vnetid, $vnet, $controller, $subnet_cfg, $interfaces_config, $config) = @_;
63586d2f
AD
45
46 my $tag = $vnet->{tag};
47 my $alias = $vnet->{alias};
48 my $ipv4 = $vnet->{ipv4};
49 my $ipv6 = $vnet->{ipv6};
50 my $mac = $vnet->{mac};
51
1de0abc0 52 my $vrf_iface = "vrf_$zoneid";
63586d2f
AD
53 my $vrfvxlan = $plugin_config->{'vrf-vxlan'};
54
55 die "missing vxlan tag" if !$tag;
912fb443 56 warn "vlan-aware vnet can't be enabled with evpn plugin" if $vnet->{vlanaware};
63586d2f 57
5a60da84 58 my @peers = PVE::Tools::split_list($controller->{'peers'});
1f543c5f 59 my ($ifaceip, $iface) = PVE::Network::SDN::Zones::Plugin::find_local_ip_interface_peers(\@peers);
63586d2f
AD
60
61 my $mtu = 1450;
ba7ac021 62 $mtu = $interfaces_config->{$iface}->{mtu} - 50 if $interfaces_config->{$iface}->{mtu};
0251ed2f 63 $mtu = $plugin_config->{mtu} if $plugin_config->{mtu};
63586d2f
AD
64
65 #vxlan interface
1de0abc0 66 my $vxlan_iface = "vxlan_$vnetid";
63586d2f
AD
67 my @iface_config = ();
68 push @iface_config, "vxlan-id $tag";
63586d2f
AD
69 push @iface_config, "vxlan-local-tunnelip $ifaceip" if $ifaceip;
70 push @iface_config, "bridge-learning off";
71 push @iface_config, "bridge-arp-nd-suppress on";
72
73 push @iface_config, "mtu $mtu" if $mtu;
1de0abc0 74 push(@{$config->{$vxlan_iface}}, @iface_config) if !$config->{$vxlan_iface};
63586d2f
AD
75
76 #vnet bridge
77 @iface_config = ();
7024ec2b 78
e612faf6
AD
79 my $address = {};
80 my $subnets = PVE::Network::SDN::Vnets::get_subnets($vnetid);
81 foreach my $subnetid (sort keys %{$subnets}) {
82 my $subnet = $subnets->{$subnetid};
83 my $cidr = $subnetid =~ s/-/\//r;
84 my $gateway = $subnet->{gateway};
85 if ($gateway) {
86 push @iface_config, "address $gateway" if !defined($address->{$gateway});
87 $address->{$gateway} = 1;
88 }
7024ec2b
AD
89 }
90
63586d2f 91 push @iface_config, "hwaddress $mac" if $mac;
1de0abc0 92 push @iface_config, "bridge_ports $vxlan_iface";
63586d2f
AD
93 push @iface_config, "bridge_stp off";
94 push @iface_config, "bridge_fd 0";
95 push @iface_config, "mtu $mtu" if $mtu;
96 push @iface_config, "alias $alias" if $alias;
97 push @iface_config, "ip-forward on" if $ipv4;
98 push @iface_config, "ip6-forward on" if $ipv6;
99 push @iface_config, "arp-accept on" if $ipv4||$ipv6;
1de0abc0 100 push @iface_config, "vrf $vrf_iface" if $vrf_iface;
63586d2f
AD
101 push(@{$config->{$vnetid}}, @iface_config) if !$config->{$vnetid};
102
1de0abc0 103 if ($vrf_iface) {
63586d2f
AD
104 #vrf interface
105 @iface_config = ();
106 push @iface_config, "vrf-table auto";
1de0abc0 107 push(@{$config->{$vrf_iface}}, @iface_config) if !$config->{$vrf_iface};
63586d2f
AD
108
109 if ($vrfvxlan) {
110 #l3vni vxlan interface
1de0abc0 111 my $iface_vrf_vxlan = "vrfvx_$zoneid";
63586d2f
AD
112 @iface_config = ();
113 push @iface_config, "vxlan-id $vrfvxlan";
114 push @iface_config, "vxlan-local-tunnelip $ifaceip" if $ifaceip;
115 push @iface_config, "bridge-learning off";
116 push @iface_config, "bridge-arp-nd-suppress on";
117 push @iface_config, "mtu $mtu" if $mtu;
1de0abc0 118 push(@{$config->{$iface_vrf_vxlan}}, @iface_config) if !$config->{$iface_vrf_vxlan};
63586d2f
AD
119
120 #l3vni bridge
1de0abc0 121 my $brvrf = "vrfbr_$zoneid";
63586d2f 122 @iface_config = ();
1de0abc0 123 push @iface_config, "bridge-ports $iface_vrf_vxlan";
63586d2f
AD
124 push @iface_config, "bridge_stp off";
125 push @iface_config, "bridge_fd 0";
126 push @iface_config, "mtu $mtu" if $mtu;
1de0abc0 127 push @iface_config, "vrf $vrf_iface";
63586d2f
AD
128 push(@{$config->{$brvrf}}, @iface_config) if !$config->{$brvrf};
129 }
130 }
131
132 return $config;
133}
134
135sub on_update_hook {
a2b32a94
AD
136 my ($class, $zoneid, $zone_cfg, $controller_cfg) = @_;
137
138 # verify that controller exist
139 my $controller = $zone_cfg->{ids}->{$zoneid}->{controller};
140 if (!defined($controller_cfg->{ids}->{$controller})) {
141 die "controller $controller don't exist";
142 } else {
143 die "$controller is not a evpn controller type" if $controller_cfg->{ids}->{$controller}->{type} ne 'evpn';
144 }
63586d2f 145
7cb9714d 146 #vrf-vxlan need to be defined
a2b32a94
AD
147
148 my $vrfvxlan = $zone_cfg->{ids}->{$zoneid}->{'vrf-vxlan'};
149 # verify that vrf-vxlan is not already declared in another zone
150 foreach my $id (keys %{$zone_cfg->{ids}}) {
151 next if $id eq $zoneid;
152 die "vrf-vxlan $vrfvxlan is already declared in $id"
153 if (defined($zone_cfg->{ids}->{$id}->{'vrf-vxlan'}) && $zone_cfg->{ids}->{$id}->{'vrf-vxlan'} eq $vrfvxlan);
63586d2f 154 }
5ca07ed9 155
63586d2f
AD
156}
157
1d44ce70 158
5ca07ed9
AD
159sub vnet_update_hook {
160 my ($class, $vnet) = @_;
161
162 raise_param_exc({ tag => "missing vxlan tag"}) if !defined($vnet->{tag});
163 raise_param_exc({ tag => "vxlan tag max value is 16777216"}) if $vnet->{tag} > 16777216;
164
165 if (!defined($vnet->{mac})) {
166 my $dc = PVE::Cluster::cfs_read_file('datacenter.cfg');
167 $vnet->{mac} = PVE::Tools::random_ether_addr($dc->{mac_prefix});
168 }
1d44ce70
AD
169}
170
5ca07ed9 171
63586d2f
AD
1721;
173
174