|
楼主 |
发表于 2025-4-5 19:12
|
显示全部楼层
已解决, 这方面的资料真的很少, 还好听得懂印尼语 YT 刚好有一个教程
修改 /etc/board.json
{
"model": {
"id": "qemu-standard-pc-q35-ich9-2009",
"name": "QEMU Standard PC (Q35 + ICH9, 2009)"
},
"network": {
"lan": {
"device": "eth0",
"protocol": "static"
},
"wan": {
"device": "eth1",
"protocol": "dhcp"
}
}
}
修改为
{
"model": {
"id": "qemu-standard-pc-q35-ich9-2009",
"name": "QEMU Standard PC (Q35 + ICH9, 2009)"
},
"network": {
"lan": {
"ports": ["eth0", "eth2", "eth3", "eth4", "eth5"],
"protocol": "static"
},
"wan": {
"device": "eth1",
"protocol": "dhcp"
}
}
} |
|