qemu ovs tap down

link_speed : 10000000

link_state : down # 注意这里的状态为 down

lldp : {}

mac : []

mac_in_use : "02:94:b0:9e:52:29"

mtu : 1500

mtu_request : []

name : tapd032ee5512d6

bash 复制代码
root@debian:/kube-ovn# ovs-vsctl list interface | grep -C 15 ovn0
external_ids        : {iface-id=node-debian, ip="100.64.0.2", ovn-installed="true", ovn-installed-ts="1744421416405"}
ifindex             : 22
ingress_policing_burst: 0
ingress_policing_kpkts_burst: 0
ingress_policing_kpkts_rate: 0
ingress_policing_rate: 0
lacp_current        : []
link_resets         : 0
link_speed          : []
link_state          : up
lldp                : {}
mac                 : []
mac_in_use          : "62:ac:d9:ae:48:35"
mtu                 : 1400
mtu_request         : 1400
name                : ovn0
ofport              : 2
ofport_request      : []
options             : {}
other_config        : {}
statistics          : {collisions=0, rx_bytes=4518055, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_missed_errors=0, rx_multicast_packets=0, rx_over_err=0, rx_packets=52479, tx_bytes=26965681, tx_dropped=0, tx_errors=0, tx_packets=52136}
status              : {driver_name=openvswitch}
type                : internal




root@debian:/kube-ovn# ovs-vsctl list interface | grep -C 30 tap
type                : ""

_uuid               : 2aaff2ca-e4a7-4031-9fbe-c7554429fb71
admin_state         : up
bfd                 : {}
bfd_status          : {}
cfm_fault           : []
cfm_fault_status    : []
cfm_flap_count      : []
cfm_health          : []
cfm_mpid            : []
cfm_remote_mpids    : []
cfm_remote_opstate  : []
duplex              : full
error               : []
external_ids        : {iface-id=vm01.default, ovn-installed="true", ovn-installed-ts="1744426295646"}
ifindex             : 42
ingress_policing_burst: 0
ingress_policing_kpkts_burst: 0
ingress_policing_kpkts_rate: 0
ingress_policing_rate: 0
lacp_current        : []
link_resets         : 0
link_speed          : 10000000
link_state          : down  # 注意这里的状态为 down
lldp                : {}
mac                 : []
mac_in_use          : "02:94:b0:9e:52:29"
mtu                 : 1500
mtu_request         : []
name                : tapd032ee5512d6
ofport              : 12
ofport_request      : []
options             : {}
other_config        : {}
statistics          : {collisions=0, rx_bytes=0, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_missed_errors=0, rx_multicast_packets=0, rx_over_err=0, rx_packets=0, tx_bytes=0, tx_dropped=0, tx_errors=0, tx_packets=0}
status              : {driver_name=tun, driver_version="1.6", firmware_version=""}
type                : ""

link_state : down # 注意这里的状态为 down

实际上应该是 qemu 还没有用到这个 tap 设备

相关推荐
martinzh1 小时前
Spring AI 项目介绍
后端
前端付豪2 小时前
20、用 Python + API 打造终端天气预报工具(支持城市查询、天气图标、美化输出🧊
后端·python
爱学习的小学渣2 小时前
关系型数据库
后端
武子康2 小时前
大数据-33 HBase 整体架构 HMaster HRegion
大数据·后端·hbase
前端付豪2 小时前
19、用 Python + OpenAI 构建一个命令行 AI 问答助手
后端·python
凌览2 小时前
斩获 27k Star,一款开源的网站统计工具
前端·javascript·后端
全栈凯哥2 小时前
02.SpringBoot常用Utils工具类详解
java·spring boot·后端
狂师2 小时前
啥是AI Agent!2025年值得推荐入坑AI Agent的五大工具框架!(新手科普篇)
人工智能·后端·程序员
星辰大海的精灵2 小时前
使用Docker和Kubernetes部署机器学习模型
人工智能·后端·架构
MikeWe2 小时前
C++宏的解析:从基础语法到实战场景
后端