> When using tap networking, two qemu-based 9.2 guests would be able to see each other
> on an Appletalk network.
To be clear, if I got tun/tap working would I be able to network between OS 9.2.2 guest and a Mojave 10.14 host? I found this discussion from 2-1/2 years ago when you helped a user get his network working again:
viewtopic.php?f=20&t=9026He was running Sierra 10.12 (a beta I believe) and eventually got things back up. Will tun/tap still work under Mojave? I note that it hasn't been updated in almost 4 years, since El Capitan was current.
I downloaded tuntap_20150118.zip from Sourceforge and installed (dancing around Mojave's enhanced security to install from an unknown developer), then rebooted Mojave. While I see the two new kexts in /Library/Extensions, I can't tell if they are working.
Following the instructions at
https://www.emaculation.com/doku.php/pp ... networking , I started Qemu under sudo and then in another Terminal window:
% [local] 2 > sudo ifconfig bridge0 create
ifconfig: SIOCIFCREATE2: File exists
% [local] 3 > sudo ifconfig bridge0 addm en0
% [local] 4 > sudo ifconfig bridge0 addm tap0
ifconfig: BRDGADD tap0: No such file or directory
% [local] 5 >
Shouldn't tap0 exist once Qemu is up? Its config:
#!/bin/bash
#
cd "$(dirname "$0")"
/usr/local/bin/qemu-system-ppc \
-M mac99,via=pmu \
-m 512 \
-hda ../qemu-try-5.img \
-boot c \
-g 1280x1024x32 \
-drive file=test2.img,format=raw,media=disk \
-netdev tap,id=network0,script=no,downscript=no \
-device sungem,netdev=network0