]> git.proxmox.com Git - pve-network.git/blame - PVE/Network/SDN/Zones/SimplePlugin.pm
subnets: move api to /sdn/vnet/<vnet>/subnets && make vnet option not optionnal
[pve-network.git] / PVE / Network / SDN / Zones / SimplePlugin.pm
CommitLineData
880ae857
AD
1package PVE::Network::SDN::Zones::SimplePlugin;
2
3use strict;
4use warnings;
5use PVE::Network::SDN::Zones::Plugin;
1d44ce70 6use PVE::Exception qw(raise raise_param_exc);
5ca07ed9
AD
7use PVE::Cluster;
8use PVE::Tools;
880ae857
AD
9
10use base('PVE::Network::SDN::Zones::Plugin');
11
12sub type {
13 return 'simple';
14}
15
16sub options {
880ae857 17 return {
efe1459b 18 nodes => { optional => 1},
880ae857
AD
19 mtu => { optional => 1 }
20 };
21}
22
23# Plugin implementation
24sub generate_sdn_config {
7024ec2b 25 my ($class, $plugin_config, $zoneid, $vnetid, $vnet, $controller, $subnet_cfg, $interfaces_config, $config) = @_;
880ae857 26
efe1459b
TL
27 return $config if$config->{$vnetid}; # nothing to do
28
880ae857
AD
29 my $ipv4 = $vnet->{ipv4};
30 my $ipv6 = $vnet->{ipv6};
31 my $mac = $vnet->{mac};
32 my $alias = $vnet->{alias};
33 my $mtu = $plugin_config->{mtu} if $plugin_config->{mtu};
34
efe1459b 35 # vnet bridge
880ae857 36 my @iface_config = ();
7024ec2b
AD
37
38 my @subnets = PVE::Tools::split_list($vnet->{subnets}) if $vnet->{subnets};
39 foreach my $subnet (@subnets) {
40 next if !defined($subnet_cfg->{ids}->{$subnet});
41 push @iface_config, "address $subnet_cfg->{ids}->{$subnet}->{gateway}" if $subnet_cfg->{ids}->{$subnet}->{gateway};
42 }
43
880ae857
AD
44 push @iface_config, "hwaddress $mac" if $mac;
45 push @iface_config, "bridge_ports none";
46 push @iface_config, "bridge_stp off";
47 push @iface_config, "bridge_fd 0";
efe1459b 48 if ($vnet->{vlanaware}) {
880ae857
AD
49 push @iface_config, "bridge-vlan-aware yes";
50 push @iface_config, "bridge-vids 2-4094";
51 }
52 push @iface_config, "mtu $mtu" if $mtu;
53 push @iface_config, "alias $alias" if $alias;
efe1459b
TL
54
55 push @{$config->{$vnetid}}, @iface_config;
880ae857
AD
56
57 return $config;
58}
59
60sub status {
61 my ($class, $plugin_config, $zone, $vnetid, $vnet, $status) = @_;
62
880ae857 63 # ifaces to check
efe1459b
TL
64 my $ifaces = [ $vnetid ];
65 my $err_msg = [];
880ae857
AD
66 foreach my $iface (@{$ifaces}) {
67 if (!$status->{$iface}->{status}) {
68 push @$err_msg, "missing $iface";
efe1459b 69 } elsif ($status->{$iface}->{status} ne 'pass') {
880ae857
AD
70 push @$err_msg, "error iface $iface";
71 }
72 }
73 return $err_msg;
74}
75
1d44ce70 76
5ca07ed9
AD
77sub vnet_update_hook {
78 my ($class, $vnet) = @_;
79
80 raise_param_exc({ tag => "vlan tag is not allowed on simple bridge"}) if defined($vnet->{tag});
81
82 if (!defined($vnet->{mac})) {
83 my $dc = PVE::Cluster::cfs_read_file('datacenter.cfg');
84 $vnet->{mac} = PVE::Tools::random_ether_addr($dc->{mac_prefix});
85 }
1d44ce70
AD
86}
87
880ae857
AD
881;
89
90