mirror of
git://git.proxmox.com/git/pve-network.git
synced 2025-01-09 01:18:06 +03:00
e612faf6ba
add vnet to subnets && remove subnetlist from vnet Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
23 lines
645 B
Perl
23 lines
645 B
Perl
use strict;
|
|
use warnings;
|
|
use File::Copy;
|
|
use PVE::Cluster qw(cfs_read_file);
|
|
|
|
use PVE::Network::SDN;
|
|
use PVE::Network::SDN::Zones;
|
|
use PVE::Network::SDN::Controllers;
|
|
use Data::Dumper;
|
|
|
|
my $network_config = PVE::Network::SDN::Zones::generate_etc_network_config();
|
|
|
|
PVE::Network::SDN::Zones::write_etc_network_config($network_config);
|
|
print "/etc/network/interfaces.d/sdn\n";
|
|
print $network_config;
|
|
print "\n";
|
|
|
|
my $controller_config = PVE::Network::SDN::Controllers::generate_controller_config();
|
|
if ($controller_config) {
|
|
print Dumper($controller_config);
|
|
PVE::Network::SDN::Controllers::write_controller_config($controller_config);
|
|
}
|