]> git.proxmox.com Git - qemu-server.git/blame_incremental - pve-bridge
correctly handle empty description in pending section
[qemu-server.git] / pve-bridge
... / ...
CommitLineData
1#!/usr/bin/perl
2
3use strict;
4use warnings;
5use PVE::QemuServer;
6use PVE::Tools qw(run_command);
7use PVE::Network;
8
9my $iface = shift;
10
11die "no interface specified\n" if !$iface;
12
13die "got strange interface name '$iface'\n"
14 if $iface !~ m/^tap(\d+)i(\d+)$/;
15
16my $vmid = $1;
17my $netid = "net$2";
18
19my $migratedfrom = $ENV{PVE_MIGRATED_FROM};
20
21my $conf = PVE::QemuServer::load_config($vmid, $migratedfrom);
22
23my $netconf = $conf->{$netid};
24
25$netconf = $conf->{pending}->{$netid} if !$migratedfrom && defined($conf->{pending}->{$netid});
26
27die "unable to get network config '$netid'\n"
28 if !defined($netconf);
29
30my $net = PVE::QemuServer::parse_net($netconf);
31die "unable to parse network config '$netid'\n" if !$net;
32
33PVE::Network::tap_create($iface, $net->{bridge});
34
35# if ovs is under this bridge all traffic control settings will be flushed.
36# so we need to call tap_rate_limit after tap_plug
37PVE::Network::tap_plug($iface, $net->{bridge}, $net->{tag}, $net->{firewall});
38
39PVE::Network::tap_rate_limit($iface, $net->{rate}) if $net->{rate};
40
41exit 0;