1. L2-agent
1. nova将虚拟网卡信息保存在Interface表(external-ids:iface-id, external-ids:iface-status, external-ids:attached-mac, external-ids:vm-uuid)
2. neutron-openvswitch-agent 利用ovsdb-client monitor监控Interface的更新,触发l2-agent管理虚拟网卡,将虚拟网卡的信息保存在Port 表(other_config:{net_uuid, network_type, physical_network})
2.neutron配置network MTU可指定的参数:
1.global_physnet_mtu (默认值1500)
2.physical_network_mtus
3.path_mtu(默认值1500)
network网络类型对应MTU的值:
1.flat、vlan 取决于global_physnet_mtu和physical_network_mtus最小值
2.tunnel 取决于 global_physnet_mtu和path_mtu 最小值